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 e3e9183 commit 665bef2Copy full SHA for 665bef2
.github/workflows/ci-lint.yml
@@ -5,24 +5,23 @@ name: Linting
5
6
on:
7
push:
8
- branches: [ main ]
+ branches: [main]
9
pull_request:
10
11
12
jobs:
13
lint:
14
-
15
runs-on: ubuntu-latest
16
17
strategy:
18
matrix:
19
- node: [14, 16, 18]
+ node: [16, 18]
20
21
steps:
22
- - uses: actions/checkout@v3
23
- - name: Use Node.js ${{ matrix.node }}
24
- uses: actions/setup-node@v3
25
- with:
26
- node-version: ${{ matrix.node }}
27
- - run: npm ci
28
- - run: npm run lint
+ - uses: actions/checkout@v3
+ - name: Use Node.js ${{ matrix.node }}
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node }}
+ - run: npm ci
+ - run: npm run lint
0 commit comments