15 lines
292 B
YAML
15 lines
292 B
YAML
|
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
|