Files
screeps-deploy-action/.gitea/workflows/test.yaml
Philipp Horstenkamp 8ca9c67979
Some checks failed
Test / Run Tests (push) Failing after 13m41s
Lint / pre-commit Linting (push) Failing after 14m12s
fix(ci): upgrade node to v22 and update docs to reflect vitest usage
2025-12-28 04:54:26 +00: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