diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 3b07263a..4dfe1927 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -31,8 +31,8 @@ jobs: strategy: fail-fast: false matrix: - node: [10, 12, 14, 16] - os: [ubuntu-latest, windows-latest, macos-latest] + node: [10, 12, 14, 16, 18, 20, 22, 24] + os: [ubuntu-latest, windows-latest, macos-13] steps: - name: Clone repository diff --git a/test/dest.js b/test/dest.js index 16c58d21..d3d2dfb0 100644 --- a/test/dest.js +++ b/test/dest.js @@ -11,6 +11,13 @@ var gulp = require('../'); var outpath = path.join(__dirname, './out-fixtures'); describe('gulp.dest()', function() { + before(function () { + if (process.versions.node.startsWith("10.")) { + this.skip(); + return; + } + }); + beforeEach(rimraf.bind(null, outpath)); afterEach(rimraf.bind(null, outpath)); diff --git a/test/src.js b/test/src.js index 82501e73..d2c81611 100644 --- a/test/src.js +++ b/test/src.js @@ -7,6 +7,13 @@ var expect = require('expect'); var gulp = require('../'); describe('gulp.src()', function() { + before(function () { + if (process.versions.node.startsWith("10.")) { + this.skip(); + return; + } + }); + it('should return a stream', function(done) { var stream = gulp.src('./fixtures/*.coffee', { cwd: __dirname }); expect(stream).toBeDefined();