Skip to content

Merge pull request #56 from StefanPenchev05/controllers #36

Merge pull request #56 from StefanPenchev05/controllers

Merge pull request #56 from StefanPenchev05/controllers #36

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x, 20.x, 21.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 }}
- name: Cache npm dependencies
uses: actions/cache@v3
with:
path: ./server/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('./server/package-lock.json') }}
- run: npm ci
working-directory: ./server
- run: npm run build --if-present
working-directory: ./server
- run: npm test
working-directory: ./server