pompy.dev/.forgejo/workflows/test.yml
pompydev 1abe688c45
Some checks failed
Test / Test (push) Has been cancelled
ci: fix failing tests
2025-06-01 14:37:43 +09:00

23 lines
639 B
YAML

# https://devenv.sh/integrations/github-actions
# https://forgejo.org/docs/latest/user/actions/
name: Test
on:
push:
branches:
- master
workflow_dispatch:
jobs:
test:
name: Test
runs-on: node:24-bullseye
steps:
- uses: actions/setup-node@v4
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v31
- run: nix profile install nixpkgs#devenv
- uses: rharkor/caching-for-turbo@v1.8
- run: devenv shell pnpm install
- run: devenv shell pnpm lint
- run: devenv shell pnpm build
- run: devenv shell pnpm test:unit
- run: devenv shell pnpm test:e2e