test: Run pnpm test
in CI on all PRs and pushes to main
All checks were successful
/ test (pull_request) Successful in 20s
All checks were successful
/ test (pull_request) Successful in 20s
This commit is contained in:
parent
036def4a0c
commit
8837536dca
1 changed files with 14 additions and 0 deletions
14
.forgejo/workflows/continuous-integration.yaml
Normal file
14
.forgejo/workflows/continuous-integration.yaml
Normal file
|
@ -0,0 +1,14 @@
|
|||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [main]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:23
|
||||
steps:
|
||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||
- run: npm install -g pnpm@10.8.0
|
||||
- run: pnpm install
|
||||
- run: pnpm test
|
Loading…
Add table
Reference in a new issue