We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edcf040 commit dd72a68Copy full SHA for dd72a68
.github/workflows/ci.yml
@@ -40,23 +40,23 @@ jobs:
40
fail-fast: false
41
matrix:
42
node:
43
- - 14
+ - "v14.19.2"
44
platform:
45
- ubuntu-latest
46
- macos-latest
47
- windows-latest
48
49
- name: "${{matrix.platform}} w/ Node.js ${{matrix.node}}.x"
+ name: "${{matrix.platform}} w/ Node.js 14.x"
50
runs-on: ${{matrix.platform}}
51
needs: chore
52
53
steps:
54
- uses: actions/checkout@v3
55
56
- - name: "Use Node.js ${{matrix.node}}.x"
+ - name: "Use Node.js ${{matrix.node}}"
57
uses: actions/setup-node@v3
58
with:
59
- node-version: ${{matrix.node}}.x
+ node-version: ${{matrix.node}}
60
61
- run: corepack yarn install --immutable
62
- run: corepack yarn build # We need the stubs to run the tests
0 commit comments