Files
screeps-deploy-action/.gitea/workflows/test.yaml
Philipp Horstenkamp c8eac1ac42
All checks were successful
Test / Run Tests (push) Successful in 2m14s
Lint / pre-commit Linting (push) Successful in 2m28s
fix(ci): upgrade node to v22 and update docs to reflect vitest usage (#55)
Reviewed-on: #55
2025-12-28 06:05:40 +01:00

20 lines
291 B
YAML

name: Test
on:
push:
workflow_dispatch:
jobs:
test:
name: Run Tests
runs-on: pi
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: '22'
- run: npm install
shell: bash
- run: npm test
shell: bash