We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28a27af commit 0647884Copy full SHA for 0647884
1 file changed
.github/workflows/ci.yml
@@ -32,11 +32,11 @@ jobs:
32
- run: curl -L https://github.com/editorconfig-checker/editorconfig-checker/releases/download/2.3.5/ec-linux-amd64.tar.gz | tar xzf - -C /opt
33
- run: /opt/bin/ec-linux-amd64 -v
34
35
- - name: Install ESLint
36
- run: |
37
- ESLINT_VERSION=$(node -p "require('./package-lock.json').packages['node_modules/eslint'].version")
38
- npm i --no-save eslint@$ESLINT_VERSION
39
- - run: npm run eslint
+ - name: Install deps
+ run: npm ci
+
+ - name: Lint
+ run: npm run eslint
40
41
test-js:
42
runs-on: ubuntu-latest
0 commit comments