Skip to content

Commit

Permalink
fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnguyennz committed Jan 6, 2024
1 parent aeb36a5 commit 49c173b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ jobs:
unit:
runs-on: ubuntu-latest
steps:
- name: checkout repo
- name: Checkout repo
uses: actions/checkout@v3
- name: use node.js
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm install
- run: npm vitest run
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install
- run: pnpm test:unit

0 comments on commit 49c173b

Please sign in to comment.