We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16659ec commit 4477284Copy full SHA for 4477284
2 files changed
.appveyor.yml
@@ -0,0 +1,20 @@
1
+build: off
2
+
3
+environment:
4
+ matrix:
5
+ - nodejs_version: '14'
6
+ - nodejs_version: '12'
7
+ - nodejs_version: '10'
8
9
+install:
10
+ - ps: Install-Product node $env:nodejs_version
11
+ - npm install
12
13
+test_script:
14
+ - node test | tap-xunit | tee test-results.xml
15
16
+after_test:
17
+ - ps: |
18
+ $wc = New-Object 'System.Net.WebClient'
19
+ $wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\test-results.xml))
20
+ Push-AppveyorArtifact (Resolve-Path '.\test-results.xml')
package.json
@@ -48,6 +48,7 @@
48
"lint-staged": "^10.5.4",
49
"prettier": "^2.2.1",
50
"tap": "^15.0.2",
51
+ "tap-xunit": "^2.4.1",
52
"touch": "^3.1.0",
53
"ts-node": "^9.1.1",
54
"typescript": "^4.1.5"
0 commit comments