We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7d50af commit 1aa3db1Copy full SHA for 1aa3db1
.github/workflows/test.yml
@@ -3,15 +3,12 @@ on: [pull_request]
3
jobs:
4
build:
5
runs-on: ubuntu-latest
6
- strategy:
7
- matrix:
8
- node-version: [14.x]
9
steps:
10
- uses: actions/checkout@v2
11
- - name: Use Node.js ${{ matrix.node-version }}
12
- uses: actions/setup-node@v1
+ - name: Use Node.js
+ uses: actions/setup-node@v2
13
with:
14
- node-version: ${{ matrix.node-version }}
+ node-version-file: '.nvmrc'
15
- run: npm i
16
- run: npm run lint
17
- run: npm run build
.nvmrc
@@ -0,0 +1 @@
1
+lts/*
0 commit comments