Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Update node.js.yml

Update node.js.yml #4

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code, and run tests across different versions of the node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI For Accord
on:
push: {}
pull_request: {}
jobs:
build:
os: [ubuntu-latest, windows-latest, macos-latest]

Check failure on line 13 in .github/workflows/node.js.yml

View workflow run for this annotation

GitHub Actions / Node.js CI For Accord

Invalid workflow file

The workflow is not valid. .github/workflows/node.js.yml (Line: 13, Col: 5): Unexpected value 'os' .github/workflows/node.js.yml (Line: 13, Col: 5): Required property is missing: runs-on
strategy:
matrix:
node-version: [10.x, 14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# Use a specific npm version for Node.js 10.x
# Adjust the version according to your requirement
# Check available npm versions: https://npmjs.com/package/npm/v/10.24.0
npm: '10.24.0'
cache: 'npm'
- run: cd Application/Frontend # Navigating to the Frontend folder before anything else
- run: npm install -g npm-check
- run: npm --version
- run: npm test:jest