Skip to content

Commit a8c6820

Browse files
committed
chore(ci): update matrix & images
1 parent 35bbaa0 commit a8c6820

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,33 @@ on: [push, pull_request]
44

55
jobs:
66
test:
7-
name: Node.js v${{ matrix.nodejs }}
7+
name: Node.js v${{ matrix.nodejs }} (${{ matrix.os }})
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
nodejs: [8, 10, 12, 14, 16, 18]
11+
nodejs: [8, 10, 12, 14, 16, 18, 20]
1212
os: [ubuntu-latest, windows-latest, macOS-latest]
1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-node@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
1616
with:
1717
node-version: ${{ matrix.nodejs }}
1818

1919
- name: Install
2020
run: npm install
2121

2222
- name: Test
23-
if: matrix.nodejs < 18
23+
if: matrix.nodejs < 20
2424
run: npm test
2525

2626
- name: Test w/ Coverage
27-
if: matrix.nodejs >= 18
27+
if: matrix.nodejs >= 20
2828
run: |
2929
npm install -g c8
3030
c8 --include=src npm test
3131
3232
- name: Report
33-
if: matrix.nodejs >= 18 && matrix.os == 'ubuntu-latest'
33+
if: matrix.nodejs >= 20 && matrix.os == 'ubuntu-latest'
3434
run: |
3535
c8 report --reporter=text-lcov > coverage.lcov
3636
bash <(curl -s https://codecov.io/bash)

test/async.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { test } from 'uvu';
2-
import { homedir } from 'os';
32
import { join, resolve } from 'path';
43
import * as assert from 'uvu/assert';
54
import escalade from '../src/async';

test/sync.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { test } from 'uvu';
2-
import { homedir } from 'os';
32
import { join, resolve } from 'path';
43
import * as assert from 'uvu/assert';
54
import escalade from '../src/sync';

0 commit comments

Comments
 (0)