Skip to content

Commit

Permalink
Allow running tests manually for the sake of debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Auroratide committed Feb 13, 2024
1 parent 3e805a5 commit b4305ea
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Manual Test
on:
workflow_dispatch:

jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
- uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test

0 comments on commit b4305ea

Please sign in to comment.