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 f5677d1 commit b1a812fCopy full SHA for b1a812f
.github/workflows/main.yml
@@ -22,6 +22,13 @@ jobs:
22
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
23
restore-keys: |
24
${{ runner.os }}-yarn-
25
+ - name: Read .nvmrc
26
+ run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
27
+ id: nvm
28
+ - name: Use Node.js (.nvmrc)
29
+ uses: actions/setup-node@v1
30
+ with:
31
+ node-version: "${{ steps.nvm.outputs.NVMRC }}"
32
- name: Install Dependencies
33
run: yarn install
34
- name: Build
0 commit comments