forked from w3c/aria-practices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (36 loc) · 775 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
41
language: node_js
node_js:
- "node"
addons:
firefox: "60.0.2"
git:
depth: 3
stages:
- Test
- Deploy
jobs:
include:
- stage: Test
name: AVA Regression Tests
script: ava -c 1 test/tests
- stage: Test
name: Regression Tests Coverage Report
script: node test/util/report.js
- stage: Test
name: JS Linting
script: npm run lint
- stage: Test
name: HTML Linting
script: npm run vnu-jar
- stage: Deploy
if: branch = master AND type != pull_request
script: skip
before_deploy: scripts/travis-before_deploy.sh
deploy:
provider: script
skip_cleanup: true
script: /tmp/deploy/travis-deploy.sh
on:
branch: master
env:
- TEST_WAIT_TIME=1000