Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Use pnpm (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Jan 13, 2023
1 parent 64525c1 commit 7ff0558
Show file tree
Hide file tree
Showing 3 changed files with 2,743 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Expand Up @@ -9,18 +9,18 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v1
- uses: pnpm/action-setup@v2
with:
version: 7.18.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

0 comments on commit 7ff0558

Please sign in to comment.