Files
popov.link/.gitea/workflows/test.yml
Valentin Popov aa516df5f7
All checks were successful
RenovateBot / renovate (push) Successful in 23s
Test / npm test (push) Successful in 46s
Merge pull request 'chore(deps): update actions/checkout action to v6' (!6) from renovate/actions-checkout-6.x into master
Reviewed-on: #6
2026-02-09 11:08:56 +04:00

17 lines
298 B
YAML

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: 24
- run: npm ci
- run: npm run check
- run: npm run typecheck