Skip to content

chore(deps): bump the npm-minor-patch group across 2 directories with 5 updates #855

chore(deps): bump the npm-minor-patch group across 2 directories with 5 updates

chore(deps): bump the npm-minor-patch group across 2 directories with 5 updates #855

Workflow file for this run

name: PR Check
on:
pull_request:
branches: [main, master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: |
package-lock.json
backend/package-lock.json
- name: Install dependencies
run: |
npm ci --ignore-scripts
npm --prefix backend ci --ignore-scripts
- name: Type check
run: npm --prefix backend run build
- name: Run tests
run: npm test