Skip to content

Commit 44c0479

Browse files
Merge pull request #773 from montoyamoraga/main
delete linting with node 14
2 parents 9ef96ac + 665bef2 commit 44c0479

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.github/workflows/ci-lint.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,23 @@ name: Linting
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [main]
99
pull_request:
10-
branches: [ main ]
10+
branches: [main]
1111

1212
jobs:
1313
lint:
14-
1514
runs-on: ubuntu-latest
1615

1716
strategy:
1817
matrix:
19-
node: [14, 16, 18]
18+
node: [16, 18]
2019

2120
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
21+
- uses: actions/checkout@v3
22+
- name: Use Node.js ${{ matrix.node }}
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: ${{ matrix.node }}
26+
- run: npm ci
27+
- run: npm run lint

0 commit comments

Comments
 (0)