Skip to content

Commit c6039c8

Browse files
authored
fix: revert
1 parent 09a0966 commit c6039c8

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ jobs:
66
tests:
77
name: Build
88
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
node: [12, 14, 16]
912
steps:
1013
- name: Checkout
1114
uses: actions/checkout@v2
@@ -14,14 +17,10 @@ jobs:
1417
fetch-depth: 0
1518
# pulls all tags (needed for lerna / semantic release to correctly version)
1619
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
17-
- name: Setup Nodejs Env
18-
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
19-
- name: Print env value
20-
run: echo ${{ env.NODE_VER }}
2120
- name: Setup Nodejs
2221
uses: actions/setup-node@v1
2322
with:
24-
node-version: ${{ env.NODE_VER }}
23+
node-version: ${{ matrix.node }}
2524
# lerna expects to be authenticated for publishing to NPM. This step will fail CI if NPM is not
2625
# authenticated, even though this build does _not_ attempt to publish, as an extra check before merge
2726
# that Lerna is set to publish.

0 commit comments

Comments
 (0)