Skip to content

Commit

Permalink
Fix Node.js 10 on CI and pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Dec 24, 2021
1 parent ca55b32 commit df0c90e
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -32,7 +32,6 @@ jobs:
- 16
- 14
- 12
- 10
name: Node.js ${{ matrix.node-version }} Quick
steps:
- name: Checkout the repository
Expand All @@ -52,6 +51,28 @@ jobs:
run: ./node_modules/.bin/jest
env:
FORCE_COLOR: 2
old:
runs-on: ubuntu-latest
name: Node.js 10 Quick
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Install pnpm
uses: pnpm/action-setup@v1
with:
version: 3
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- name: Install Node.js 10
uses: actions/setup-node@v2
with:
node-version: 10
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Run unit tests
run: pnpm unit
env:
FORCE_COLOR: 2
benchmark:
name: Benchmark
runs-on: ubuntu-latest
Expand Down

0 comments on commit df0c90e

Please sign in to comment.