Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): kill appveyor with fire #3059

Closed
wants to merge 3 commits into from
Closed
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
20 changes: 19 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
version: 2
version: 2.1

# require for windows support
orbs:
win: circleci/windows@1.0.0

unit_tests: &unit_tests
steps:
Expand Down Expand Up @@ -61,6 +65,14 @@ jobs:
- run:
name: Run tests with coverage.
command: npm run ci:coverage
windows-node-v12:
executor: win/vs2019
steps:
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: Run tests with coverage.
command: npm run ci:coverage

workflows:
version: 2
Expand Down Expand Up @@ -94,3 +106,9 @@ workflows:
filters:
tags:
only: /.*/
- windows-node-v12:
requires:
- analysis
filters:
tags:
only: /.*/
32 changes: 0 additions & 32 deletions appveyor.yml

This file was deleted.

17 changes: 17 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# https://aka.ms/yaml

jobs:

- job: Windows
pool:
vmImage: 'win1803'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'

- script: |
npm install
npm run test
displayName: 'npm install and test'