Skip to content

Commit

Permalink
Pin exact Node.js version number
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 committed May 4, 2022
1 parent edcf040 commit dd72a68
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,23 +40,23 @@ jobs:
fail-fast: false
matrix:
node:
- 14
- "v14.19.2"
platform:
- ubuntu-latest
- macos-latest
- windows-latest

name: "${{matrix.platform}} w/ Node.js ${{matrix.node}}.x"
name: "${{matrix.platform}} w/ Node.js 14.x"
runs-on: ${{matrix.platform}}
needs: chore

steps:
- uses: actions/checkout@v3

- name: "Use Node.js ${{matrix.node}}.x"
- name: "Use Node.js ${{matrix.node}}"
uses: actions/setup-node@v3
with:
node-version: ${{matrix.node}}.x
node-version: ${{matrix.node}}

- run: corepack yarn install --immutable
- run: corepack yarn build # We need the stubs to run the tests
Expand Down

0 comments on commit dd72a68

Please sign in to comment.