Skip to content

Update package.json #10

Update package.json

Update package.json #10

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: Backend/package-lock.json
# Backend
- name: Install dependencies for the backend
working-directory: ./Backend
run: npm ci
- name: Build backend
working-directory: ./Backend
run: npm run build --if-present
- name: Run backend
working-directory: ./Backend
run: npm test