From 707df835fa32f59f5ae469a77b0302c39a354113 Mon Sep 17 00:00:00 2001 From: Paul Soporan Date: Thu, 30 Apr 2020 12:57:38 +0300 Subject: [PATCH] ci: run tests on node 14 (#1239) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ci: run tests on node 14 * Fixes test * Stops running tests on Node 13 Co-authored-by: Maƫl Nison --- .github/workflows/integration-workflow.yml | 2 +- .../pkg-tests-specs/sources/commands/pack.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-workflow.yml b/.github/workflows/integration-workflow.yml index 909302249491..01cd71dbf9a0 100644 --- a/.github/workflows/integration-workflow.yml +++ b/.github/workflows/integration-workflow.yml @@ -62,7 +62,7 @@ jobs: node: - 10 - 12 - - 13 + - 14 platform: - ubuntu-latest - windows-latest diff --git a/packages/acceptance-tests/pkg-tests-specs/sources/commands/pack.test.js b/packages/acceptance-tests/pkg-tests-specs/sources/commands/pack.test.js index 6a5cd2e47f26..f7256e9efc0e 100644 --- a/packages/acceptance-tests/pkg-tests-specs/sources/commands/pack.test.js +++ b/packages/acceptance-tests/pkg-tests-specs/sources/commands/pack.test.js @@ -141,7 +141,7 @@ describe(`Commands`, () => { await run(`install`); - await fsUtils.writeFile(`${path}/lib/foo.js`); + await fsUtils.writeFile(`${path}/lib/foo.js`, ``); const {stdout} = await run(`pack`, `--dry-run`); await expect(stdout).toMatch(/lib\/foo\.js/);