Skip to content

No public description #1009

No public description

No public description #1009

Workflow file for this run

name: run-unit-tests
on:
pull_request:
branches:
- main
paths:
- 'src/**'
- 'test/**'
- 'integration_tests/**'
jobs:
run_unit_tests:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ~20.9.0
- run: |
yarn install --frozen-lockfile
yarn test