From ba21fc0b18dada47291ee53be0b58f498b956f19 Mon Sep 17 00:00:00 2001 From: fisker Cheung Date: Mon, 7 Nov 2022 22:03:03 +0800 Subject: [PATCH] Add two projects to integration test (#1949) --- .github/workflows/main.yml | 1 + test/integration/projects.mjs | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8d8f80c958..cf1730dfb5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -66,6 +66,7 @@ jobs: - "10" - "11" - "12" + - "13" env: TIMING: 1 runs-on: ubuntu-latest diff --git a/test/integration/projects.mjs b/test/integration/projects.mjs index 7599fc37ee..d5b52f1f51 100644 --- a/test/integration/projects.mjs +++ b/test/integration/projects.mjs @@ -189,6 +189,16 @@ export default [ // These two project use `decorator`, try to enable when we use `@babel/eslint-parser` // 'https://github.com/untitled-labs/metabase-custom', // 'https://github.com/TheThingsNetwork/lorawan-stack', + [ + 'https://github.com/zloirock/core-js', + { + repository: 'https://github.com/rollup/rollup', + ignore: [ + 'test/**', + 'scripts/perf.js', + ], + }, + ], ].flatMap((projectOrProjects, index) => Array.isArray(projectOrProjects) ? projectOrProjects.map(project => ({...normalizeProject(project), group: index}))