forked from panva/node-oidc-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
27 lines (27 loc) · 669 Bytes
/
.travis.yml
File metadata and controls
27 lines (27 loc) · 669 Bytes
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
language: node_js
node_js:
- lts/carbon
- lts/dubnium
- stable
script: npm run coverage
after_script: npx codecov
jobs:
include:
- stage: Lint
script: npm run lint
node_js: stable
after_script: skip
- stage: heroku deploy
if: branch = master AND type = push
install: skip
script: skip
after_script: skip
deploy:
provider: heroku
app: guarded-cliffs-8635
api_key: $HEROKU_AUTH_TOKEN
- stage: conformance build
if: branch = master AND type = push
install: npm install got@^9.0.0 --no-save
script: node test/trigger_conformance_build.js
after_script: skip