Skip to content

Readd summaries widget (#612) #1024

Readd summaries widget (#612)

Readd summaries widget (#612) #1024

Workflow file for this run

name: "Unit Tests"
on:
pull_request:
push:
branches:
- "main"
concurrency:
group:
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "21.x"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run type checking
run: npm run tsc
- name: Run tests
run: npm run vitest:ci