Skip to content

changed checkout and node.js version #4

changed checkout and node.js version

changed checkout and node.js version #4

Workflow file for this run

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@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Verify Node.js and npm installation
run: |
node -v
npm -v
- name: Install dependencies
run: npm ci