Files
screeps-deploy-action/.gitea/workflows/test.yaml
Renovate Bot 0cf71b82b8
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m7s
Test / Run Tests (push) Successful in 3m52s
chore(deps): update dependency node to v24
2026-01-04 06:04:20 +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: '24'
- run: npm install
shell: bash
- run: npm test
shell: bash