Files
screeps-deploy-action/.gitea/workflows/test.yaml
T
Philipp cfb97819ae
Test / Run Tests (push) Failing after 1s
Recompile dist/ on Renovate PR / recompile (pull_request) Failing after 0s
Test / Run Tests (pull_request) Failing after 0s
Philipp/Global-Workflows: Pre-commit Lint (Scoped) / pre-commit (pull_request) Failing after 1s
refactor: migrate to screeps-api v2 and update actions to node 22
2026-09-04 23:56:04 +02:00

23 lines
522 B
YAML

name: Test
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
name: Run Tests
runs-on: pi
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: '22'
cache: pnpm
- run: pnpm install --frozen-lockfile
shell: bash
- run: pnpm test
shell: bash