Skip to content

Start unittest for controller associated to Product #214

Start unittest for controller associated to Product

Start unittest for controller associated to Product #214

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 node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
# @TODO: à décommenter quand on aura régler nos tests
# push:
# branches: ["dev"]
# pull_request:
# branches: ["dev"]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend/
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "16.x"
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test