Skip to content

Commit

Permalink
Fix Node.js 12 on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed May 1, 2022
1 parent 684afed commit 08d960e
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
node-version:
- 16
- 14
- 12
name: Node.js ${{ matrix.node-version }} Quick
steps:
- name: Checkout the repository
Expand All @@ -53,7 +52,27 @@ jobs:
run: pnpm unit
env:
FORCE_COLOR: 2
old:
old12:
runs-on: ubuntu-latest
name: Node.js 12 Quick
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: "^6.0.0"
- name: Install Node.js 10
uses: actions/setup-node@v3
with:
node-version: 12
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Run unit tests
run: pnpm unit
env:
FORCE_COLOR: 2
old10:
runs-on: ubuntu-latest
name: Node.js 10 Quick
steps:
Expand Down

0 comments on commit 08d960e

Please sign in to comment.