Skip to content

Commit c93997d

Browse files
authored
build: replace AppVeyor with CircleCI's Windows support (#189)
1 parent 170d05d commit c93997d

File tree

2 files changed

+10
-22
lines changed

2 files changed

+10
-22
lines changed

.circleci/config.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ steps-test: &steps-test
2222
- run: npm test
2323

2424

25-
version: 2
25+
version: 2.1
26+
orbs:
27+
win: circleci/[email protected]
2628
jobs:
2729
test-linux-8:
2830
docker:
@@ -36,6 +38,11 @@ jobs:
3638
macos:
3739
xcode: "10.2.0"
3840
<<: *steps-test
41+
test-windows:
42+
executor:
43+
name: win/default
44+
shell: bash.exe
45+
<<: *steps-test
3946

4047
release:
4148
docker:
@@ -53,11 +60,13 @@ workflows:
5360
- test-linux-8
5461
- test-linux-10
5562
- test-mac
63+
- test-windows
5664
- release:
5765
requires:
5866
- test-linux-8
5967
- test-linux-10
6068
- test-mac
69+
- test-windows
6170
filters:
6271
branches:
6372
only:

appveyor.yml

-21
This file was deleted.

0 commit comments

Comments
 (0)