Skip to content

Commit 266e2d6

Browse files
Merge pull request #467 from ericcrosson-bitgo/build-nix-upgrade-nixpkgs-flake-input
test: replace ava with node:test
2 parents 46d28e7 + 40d3123 commit 266e2d6

27 files changed

+1082
-1978
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,15 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [lts/-2, lts/-1, lts/*]
17+
node-version:
18+
# Skip lts/-2 while it refers to Node.js 14, since this version
19+
# does not come with Node.js's built-in test runner.
20+
# - lts/-2
21+
# Skip lts/-1 while it refers to Node.js 16, since this version
22+
# ships with a segfault when collecting code coverage with
23+
# Node.js's built-in test runner.
24+
# - lts/-1
25+
- lts/*
1826

1927
name: Node.js ${{ matrix.node-version }}
2028
steps:
@@ -27,11 +35,6 @@ jobs:
2735
cache: npm
2836
node-version: ${{ matrix.node-version }}
2937

30-
# Install npm greater-than-or-equal-to 7 so we can use npm workspaces.
31-
# We can remove this when Node.js 16 is the oldest LTS
32-
- name: Update npm
33-
run: npm install --global 'npm@>7'
34-
3538
- name: Install dependencies
3639
run: npm ci
3740

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)