Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Archival Notice

Archival Notice #15

Workflow file for this run

# Workflow intended to be run only on PRs, that attempts to build locally to catch any errors
name: Test Deployment
on:
pull_request:
# Not specifying a type, lets it run on an PR update
jobs:
test:
runs-on: ubuntu-latest
steps:

Check failure on line 13 in .github/workflows/test-deploy.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/test-deploy.yaml

Invalid workflow file

You have an error in your yaml syntax on line 13
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- uses: pnpm/action-setup@v2.2.2
with:
version: 6.0.2
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: Test Build
run: pnpm build