Skip to content

build(deps-dev): bump @types/node from 20.9.4 to 20.9.5 in /app/web #311

build(deps-dev): bump @types/node from 20.9.4 to 20.9.5 in /app/web

build(deps-dev): bump @types/node from 20.9.4 to 20.9.5 in /app/web #311

Workflow file for this run

name: NextJS Unit Tests
concurrency:
group: ${{ github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- "develop"
- "master"
- "main"
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
token: ${{ github.token }}
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
uses: bahmutov/npm-install@v1
with:
working-directory: app/web
- name: Run tests
run: cd app/web && npm run test