From 9923f1a01392fd934508230c671492de16a8c577 Mon Sep 17 00:00:00 2001 From: Paul Soporan Date: Thu, 23 Apr 2020 00:22:46 +0300 Subject: [PATCH 1/3] ci: run tests on node 14 --- .github/workflows/integration-workflow.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/integration-workflow.yml b/.github/workflows/integration-workflow.yml index 909302249491..a2646cbff87e 100644 --- a/.github/workflows/integration-workflow.yml +++ b/.github/workflows/integration-workflow.yml @@ -63,6 +63,7 @@ jobs: - 10 - 12 - 13 + - 14 platform: - ubuntu-latest - windows-latest From efd85133b05dd7f633669a1c54c8485514088fc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Nison?= Date: Thu, 30 Apr 2020 11:33:39 +0200 Subject: [PATCH 2/3] Fixes test --- .../pkg-tests-specs/sources/commands/pack.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 0ed2240ac7bb..c5710fd02432 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/); From 5c35d7a5d6539be69eb8806f36da7da504659d95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Nison?= Date: Thu, 30 Apr 2020 11:57:15 +0200 Subject: [PATCH 3/3] Stops running tests on Node 13 --- .github/workflows/integration-workflow.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/integration-workflow.yml b/.github/workflows/integration-workflow.yml index a2646cbff87e..01cd71dbf9a0 100644 --- a/.github/workflows/integration-workflow.yml +++ b/.github/workflows/integration-workflow.yml @@ -62,7 +62,6 @@ jobs: node: - 10 - 12 - - 13 - 14 platform: - ubuntu-latest