Files
screeps-deploy-action/.gitea/workflows/test.yaml
Renovate Bot b9f9fb852d
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m5s
Test / Run Tests (push) Successful in 7m31s
chore(deps): update actions/setup-node action to v6
2026-01-04 06:04:13 +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@v6
with:
node-version: '22'
- run: npm install
shell: bash
- run: npm test
shell: bash