• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# need to declare the language as well as the matrix below
2language: node_js
3
4os:
5  - windows
6
7node_js:
8  - 14
9  - 12
10  - 10
11  - 8
12  - 6
13
14env: "DEPLOY_VERSION=testing"
15
16install:
17  - "node . install"
18
19script:
20  - "node . run tap -- \"test/tap/*.js\" -t600 -Rclassic -c"
21