Files
screeps-deploy-action/.gitea/workflows/test.yaml
T
Philipp a4abc3806c
Lint / pre-commit Linting (push) Successful in 2m15s
Test / Run Tests (push) Failing after 1m28s
chore: migrate package manager from npm to pnpm
2026-08-10 23:45:58 +02:00

21 lines
430 B
YAML

name: Test
on:
push:
workflow_dispatch:
jobs:
test:
name: Run Tests
runs-on: pi
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '24'
- uses: pnpm/action-setup@v4
- run: pnpm install --frozen-lockfile
shell: bash
- run: pnpm test
shell: bash