Skip to content

Ia v2 new training

Ia v2 new training #60

Workflow file for this run

# Runs the tests on every main push
on:
workflow_dispatch:
pull_request:
# branches:
# - develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
cache-dependency-path: backend/package-lock.json
- name: Install modules and run tests
run: |
cd backend
npm ci
npm run test