aboutsummaryrefslogtreecommitdiff
path: root/.gitea/workflows/test.yml
blob: ec72bd0d7f34616f254139748873e0b99efa327d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Test

on: [push, pull_request]

jobs:
  test:
    name: npm test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: actions/setup-node@v4
        with:
          node-version: 22
      - run: npm ci
      - run: npm run check
      - run: npm run typecheck