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

Bumped supported versions of Node and TypeScript in CircleCI #4916

Merged
merged 4 commits into from
Mar 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.