Skip to content

Commit

Permalink
Merge pull request #65 from chodorowicz/move-to-pnpm
Browse files Browse the repository at this point in the history
start using pnpm for node dependencies
  • Loading branch information
chodorowicz authored Oct 12, 2024
2 parents 69b2944 + 70a1c8a commit 4b5fcd4
Show file tree
Hide file tree
Showing 5 changed files with 8,834 additions and 24,572 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: npm ci
run: pnpm i
- name: Build
run: npm run build
run: pnpm run build
- name: Test
run: npm run test
run: pnpm run test
- name: Prettier check
run: npm run prettier:check
run: pnpm run prettier:check
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dist/
pnpm-lock.yaml
Loading

0 comments on commit 4b5fcd4

Please sign in to comment.