From f195b45b16b0ec80cde9de60ea04a51a782866a0 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Thu, 18 Nov 2021 12:50:23 +0100 Subject: [PATCH 1/2] chore: drop circleci build --- .circleci/config.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 1db7a8b0..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,27 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: circleci/node:10.24.1 - - working_directory: ~/repo - - steps: - - checkout - - # Download and cache dependencies - - restore_cache: - keys: - - node-10-dependencies-{{ checksum "package.json" }} - # fallback to using the latest cache if no exact match is found - - node-10-dependencies- - - - run: yarn install - - - save_cache: - paths: - - node_modules - key: node-10-dependencies-{{ checksum "package.json" }} - - # run tests! - - run: yarn test From 2e24044e5fba0aba3fb671c103c5f1cf0b3d965e Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Thu, 18 Nov 2021 12:53:33 +0100 Subject: [PATCH 2/2] chore: drop node 10 and add node 16 Node 10 is EOL and Node 16 is now LTS. This allows to updates a bunch of dependencies and shouldn't change anything for users (even if we should probably add this to the changelog for good measure). --- .github/workflows/node.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index b19bf866..f7ce8348 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -20,7 +20,7 @@ jobs: test: strategy: matrix: - node: [10, 12, 14] + node: [12, 14, 16] runs-on: ubuntu-latest steps: