-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (31 loc) · 872 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
language: node_js
node_js:
- "lts/*"
stages:
- Checks
- name: Tests
if: NOT branch = main
- name: "Tests and Reports"
if: branch = main
jobs:
include:
- stage: Checks
- script: npm run check-links
name: Check Doc links
- script: npm run check-urls
name: Check Doc URLs
# - script: npm run check-typing
# name: Check Typing
- script: npm run check-formatting
name: Check Formatting
# - script: npm run lint
# name: Lint
- stage: Tests
name: Run Unit Tests
# - script: npm run test:mutation
# name: Run Mutation Tests
- stage: "Tests and Reports"
script: npm run test:coverage && npm run coveralls
name: Run Unit Tests, generate coverage and publish to coveralls
# - script: npm run test:mutation-report
# name: Run Mutation Tests and publish reports