This repository was archived by the owner on Apr 1, 2026. It is now read-only.
Archival Notice #15
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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: | ||
| - 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 | ||