We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 617fd11 commit 0c7db31Copy full SHA for 0c7db31
.circleci/config.yml
@@ -2,6 +2,10 @@
2
3
version: 2.1
4
5
+orbs:
6
+ win: circleci/[email protected]
7
+ node: circleci/[email protected]
8
+
9
executors:
10
node18:
11
docker:
@@ -52,6 +56,22 @@ jobs:
52
56
- run:
53
57
name: Run tests
54
58
command: npm test
59
+ test_win:
60
+ executor:
61
+ name: win/default
62
+ shell: bash.exe
63
+ steps:
64
+ - checkout
65
+ - node/install
66
+ - run:
67
+ name: Report Node and NPM versions
68
+ command: echo "Using Node $(node --version) and NPM $(npm --version)"
69
70
+ name: Install dependencies
71
+ command: npm install
72
73
+ name: Run tests
74
+ command: npm test
55
75
76
workflows:
77
version: 2
@@ -68,6 +88,7 @@ workflows:
88
- node14_7
89
- node12_latest
90
- node12_17 # first with dynamic import() of commonjs modules
91
+ - test_win
92
cron:
93
<<: *push_workflow
94
triggers:
0 commit comments