Skip to content

Commit

Permalink
Switch to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcw committed Jun 13, 2024
1 parent 10094f9 commit 73729db
Show file tree
Hide file tree
Showing 4 changed files with 1,719 additions and 2,540 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3

- uses: pnpm/action-setup@v4
- name: Install dependencies
uses: bahmutov/npm-install@v1
run: pnpm install

- name: Build project
run: npm run build
run: pnpm build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ jobs:
with:
node-version: 20

- uses: pnpm/action-setup@v4
- name: Install dependencies
uses: bahmutov/npm-install@v1
run: pnpm install

- run: npm run tsc
- run: npm run lint
- run: npm run test
- run: pnpm tsc
- run: pnpm lint
- run: pnpm test
Loading

0 comments on commit 73729db

Please sign in to comment.