Skip to content

Commit

Permalink
chore: add pr github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
alcb1310 committed Jan 12, 2025
1 parent 77b94ab commit 07a4c1a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
pull_request:

jobs:
unit-test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v3 # docs https://pnpm.io/continuous-integration#github-actions
with:
version: 9
# Further steps for your build/test process
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test

0 comments on commit 07a4c1a

Please sign in to comment.