Skip to content

Commit

Permalink
Update to pnpm 8
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Apr 24, 2023
1 parent e36ec60 commit d43157f
Show file tree
Hide file tree
Showing 2 changed files with 575 additions and 555 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -33,15 +33,14 @@ jobs:
node-version:
- 18
- 16
- 14
name: Node.js ${{ matrix.node-version }} Quick
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand All @@ -53,7 +52,13 @@ jobs:
run: pnpm unit
old:
runs-on: ubuntu-latest
name: Node.js 10 Quick
strategy:
matrix:
node-version:
- 14
- 12
- 10
name: Node.js ${{ matrix.node-version }} Quick
steps:
- name: Checkout the repository
uses: actions/checkout@v3
Expand All @@ -63,10 +68,10 @@ jobs:
version: 3
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- name: Install Node.js 10
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 10
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: pnpm install --no-frozen-lockfile --ignore-scripts
- name: Run unit tests
Expand Down

0 comments on commit d43157f

Please sign in to comment.