From 7040affce7a917cbd3ce5982603ff3e53becaf59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=96=9B=E5=AE=9A=E8=B0=94=E7=9A=84=E7=8C=AB?= Date: Wed, 21 Oct 2020 16:06:13 +0800 Subject: [PATCH 1/3] build: run tests on node v15 --- .circleci/config.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a3324df346d7..2c4d5a665db1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -83,6 +83,21 @@ jobs: - store_test_results: path: reports/junit + test-node-15: + working_directory: ~/jest + executor: node/default + steps: + - checkout + - node/install: + node-version: '15' + install-npm: false + - node/install-packages: *install + - run: + command: yarn test-ci-partial + - store_test_results: + path: reports/junit + + test-or-deploy-website: working_directory: ~/jest executor: node/default @@ -105,7 +120,8 @@ workflows: - test-node-10 - test-node-12 - test-node-13 - - test-node-14 # current + - test-node-14 + - test-node-15 # current - test-jest-circus - test-or-deploy-website: filters: *filter-ignore-gh-pages From b1c54aec931484446a99db9dcb30f5d847cf0bdd Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Wed, 21 Oct 2020 10:24:14 +0200 Subject: [PATCH 2/3] Update .circleci/config.yml --- .circleci/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2c4d5a665db1..c1df85935a23 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -97,7 +97,6 @@ jobs: - store_test_results: path: reports/junit - test-or-deploy-website: working_directory: ~/jest executor: node/default From 8bfbecbc46ef45a6a2c63b5ed2f620b54ec6c32b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=96=9B=E5=AE=9A=E8=B0=94=E7=9A=84=E7=8C=AB?= Date: Wed, 21 Oct 2020 18:05:55 +0800 Subject: [PATCH 3/3] update github actions --- .github/workflows/nodejs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index c54471099b64..2cdf9ab3b869 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -54,7 +54,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [10.x, 12.x, 13.x, 14.x] + node-version: [10.x, 12.x, 13.x, 14.x, 15.x] os: [ubuntu-latest, macOS-latest, windows-latest] runs-on: ${{ matrix.os }}