AMD64
Node.js: node
Git
mkdtravis/hosted-travis:.travis.yml@5556ebc
os: linux
node_js: node
language: node_js
dist: focal
script:
- echo "Testing deployment with dpl" > index.html
cache:
directories:
- node_modules
group: stable
addons:
deploy:
provider: pages
skip_cleanup: true
local_dir: "."
target_branch: gh-pages
token: "$GITHUB_TOKEN"
on:
branch:
- main
Build Config
{
"on": {
"branch": [
"main"
]
},
"language": "node_js",
"os": [
"linux"
],
"dist": "focal",
"node_js": [
"node"
],
"script": [
"echo \"Testing deployment with dpl\" > index.html"
],
"cache": {
"directories": [
"node_modules"
]
},
"group": "stable",
"deploy": [
{
"provider": "pages",
"strategy": "git",
"skip_cleanup": true,
"local_dir": ".",
"target_branch": "gh-pages",
"token": "$GITHUB_TOKEN"
}
]
}