Files
screeps-deploy-action/.gitea/workflows/test.yaml
Philipp Horstenkamp 3ff19001a7
Some checks are pending
Lint / pre-commit Linting (push) Waiting to run
Test / Run Tests (push) Successful in 1m12s
chore: Add a unit testing framework (#49)
Add vitest as a unit testing framework

Reviewed-on: #49
2026-01-04 07:02:20 +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