Skip to content

Commit 81066f1

Browse files
committed
🐛 Adjust CI to the latest changes
Signed-off-by: Alexander Kurbatov <sir.alkurbatov@yandex.ru>
1 parent 42e40c2 commit 81066f1

File tree

2 files changed

+5
-17
lines changed

2 files changed

+5
-17
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,13 @@ on:
1111

1212
jobs:
1313
build:
14-
1514
runs-on: macOS-latest
1615

17-
strategy:
18-
matrix:
19-
node-version: [10.x, 12.x]
20-
2116
steps:
22-
- uses: actions/checkout@v2
23-
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v1
17+
- uses: actions/checkout@v3
18+
- uses: actions/setup-node@v4
2519
with:
26-
node-version: ${{ matrix.node-version }}
20+
node-version: 23
2721
- run: npm ci
2822
- run: npm run lint
2923
- run: npm test

.github/workflows/coverage.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,13 @@ on:
99

1010
jobs:
1111
build:
12-
1312
runs-on: macOS-latest
1413

15-
strategy:
16-
matrix:
17-
node-version: [10.x]
18-
1914
steps:
2015
- uses: actions/checkout@v2
21-
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v1
16+
- uses: actions/setup-node@v4
2317
with:
24-
node-version: ${{ matrix.node-version }}
18+
node-version: 23
2519
- run: npm ci
2620
- uses: paambaati/codeclimate-action@v2.6.0
2721
env:

0 commit comments

Comments
 (0)