Skip to content

Merge pull request #143 from ichinya/feat/dashboard-overview-migration #514

Merge pull request #143 from ichinya/feat/dashboard-overview-migration

Merge pull request #143 from ichinya/feat/dashboard-overview-migration #514

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm test
- run: npm run coverage
- uses: actions/upload-artifact@v4
if: always()
with:
name: coverage
path: packages/*/coverage/
retention-days: 14