aboutsummaryrefslogtreecommitdiff
path: root/.gitea/workflows/test.yml
blob: 982f712f4ee0572c48484397e9a1c1d186488f0b (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@v4
      - uses: actions/setup-node@v4
        with:
          node-version: 22
      - run: npm ci
      - run: npm run check
      - run: npm run typecheck