Skip to content

Commit

Permalink
add work for checking node
Browse files Browse the repository at this point in the history
  • Loading branch information
dzgierski19 committed Jun 6, 2024
1 parent 5a3fa8f commit 0a58900
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/nodeCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Node.js CI

on:
push:
branches:
- main
- dev

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Verify Node.js and npm installation
run: |
node -v
npm -v
- name: Install dependencies
run: npm ci

0 comments on commit 0a58900

Please sign in to comment.