Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
chore: bump supported versions of Node and TypeScript in CI (#4916)
Browse files Browse the repository at this point in the history
  • Loading branch information
adidahiya authored Mar 5, 2020
1 parent 541bfed commit 51db50e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 36 deletions.
38 changes: 18 additions & 20 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ aliases:
- &docker-node-8
- image: circleci/node:8

- &docker-node-6
- image: circleci/node:6

- &restore-node-modules-cache
name: Restore node_modules cache
key: v1-yarn-deps-{{ checksum "yarn.lock" }}
Expand Down Expand Up @@ -82,7 +79,7 @@ jobs:
- run: yarn test

test2.1:
docker: *docker-node-6
docker: *docker-node-8
steps:
- checkout
- restore_cache: *restore-node-modules-cache
Expand All @@ -91,48 +88,49 @@ jobs:
- run: yarn test

test2.4:
docker: *docker-node-6
docker: *docker-node-8
steps:
- checkout
- restore_cache: *restore-node-modules-cache
- attach_workspace: { at: '.' }
- run: yarn add typescript@2.4
- run: yarn test

test2.7:
docker: *docker-node-6
test2.8:
docker: *docker-node-8
steps:
- checkout
- restore_cache: *restore-node-modules-cache
- attach_workspace: { at: '.' }
- run: yarn add typescript@2.7
- run: yarn add typescript@2.8
- run: yarn test

test2.8:
docker: *docker-node-6
test3.1:
docker: *docker-node-8
steps:
- checkout
- restore_cache: *restore-node-modules-cache
- attach_workspace: { at: '.' }
- run: yarn add typescript@2.8
- run: yarn add typescript@3.1
- run: yarn test

test2.9:
docker: *docker-node-6
test3.4:
docker: *docker-node-8
steps:
- checkout
- restore_cache: *restore-node-modules-cache
- attach_workspace: { at: '.' }
- run: yarn add typescript@2.9
- run: yarn add typescript@3.4
- run: yarn test

test3.0:
test3.8:
docker: *docker-node-8
steps:
- checkout
- restore_cache: *restore-node-modules-cache
- attach_workspace: { at: '.' }
- run: yarn add typescript@3.0.1
- run: yarn add typescript@3.8
- run: yarn test
- run: yarn test

testRc:
Expand Down Expand Up @@ -170,13 +168,13 @@ workflows:
requires: [build]
- test2.4:
requires: [build]
- test2.7:
requires: [build]
- test2.8:
requires: [build]
- test2.9:
- test3.1:
requires: [build]
- test3.4:
requires: [build]
- test3.0:
- test3.8:
requires: [build]
- testRc:
requires: [build]
Expand Down
16 changes: 0 additions & 16 deletions appveyor.yml

This file was deleted.

0 comments on commit 51db50e

Please sign in to comment.