Skip to content

Commit 2a12841

Browse files
authored
chore(ci): Skip clone tests on Node v10 (#164)
chore(ci): Temporarily only build on x86_64 MacOS chore(ci): Add additional Node versions to matrix
1 parent f56ac3d commit 2a12841

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
node: [10, 12, 14, 16]
35-
os: [ubuntu-latest, windows-latest, macos-latest]
34+
node: [10, 12, 14, 16, 18, 20, 22, 24]
35+
os: [ubuntu-latest, windows-latest, macos-13]
3636

3737
steps:
3838
- name: Clone repository

test/file.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,12 @@ function suite(moduleName) {
422422
});
423423

424424
describe('clone()', function () {
425+
before(function () {
426+
if (process.versions.node.startsWith("10.")) {
427+
this.skip();
428+
}
429+
});
430+
425431
var fakeStat = {
426432
isSymbolicLink: function () {
427433
return true;

0 commit comments

Comments
 (0)