Files
screeps-deploy-action/.gitea/workflows/test.yaml
T
Philipp 1e44b85b6a
Philipp/Global-Workflows: Pre-commit Lint (Scoped) / pre-commit (pull_request) Successful in 2m37s
Test / Run Tests (push) Successful in 5m53s
Test / Run Tests (pull_request) Successful in 5m49s
perf: add pnpm store caching to recompile and test workflows
2026-09-04 22:39:07 +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: '24'
cache: pnpm
- run: pnpm install --frozen-lockfile
shell: bash
- run: pnpm test
shell: bash