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 #2

Workflow file for this run

oin# 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

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

View workflow run for this annotation

GitHub Actions / .github/workflows/node.js.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
# 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:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
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 }}
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