chore: bump nock from 13.3.3 to 13.3.4 #511
Closed
Travis CI / Travis CI - Branch
succeeded
Oct 16, 2023 in 1m 33s
Build Passed
The build passed.
Details
This is a normal build for the dependabot/npm_and_yarn/nock-13.3.4 branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | Node.js |
Operating System | Linux (Focal) |
Node.js Version | 18 |
Build Configuration
{
"language": "node_js",
"os": [
"linux"
],
"dist": "focal",
"node_js": [
"18"
],
"services": [
"docker"
],
"before_install": [
"if [[ -v DOCKERHUB_TOKEN ]]; then echo \"${DOCKERHUB_TOKEN}\" | docker login -u \"icdevops\" --password-stdin; fi"
],
"script": [
"if [ \"${TRAVIS_PULL_REQUEST}\" != \"false\" ]; then npx audit-ci --config audit-ci.json; else npx audit-ci --config audit-ci.json || true; fi",
"npm run lint",
"npm test",
"docker build --rm -t \"quay.io/razee/mustachetemplate:${TRAVIS_COMMIT}\" .",
"if [ -n \"${TRAVIS_TAG}\" ]; then docker tag quay.io/razee/mustachetemplate:${TRAVIS_COMMIT} quay.io/razee/mustachetemplate:${TRAVIS_TAG}; fi",
"docker images",
"./build/process-template.sh kubernetes/MustacheTemplate/resource.yaml >/tmp/resource.yaml",
"if [[ \"${TRAVIS_TAG}\" =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$ ]]; then npm version --no-git-tag-version \"${TRAVIS_TAG}\"; fi"
],
"before_deploy": [
"docker login -u=\"${QUAY_ID}\" -p=\"${QUAY_TOKEN}\" quay.io"
],
"deploy": [
{
"provider": "script",
"script": "docker push \"quay.io/razee/mustachetemplate:${TRAVIS_TAG}\"",
"skip_cleanup": true,
"on": {
"tags": true,
"condition": [
"${TRAVIS_TAG} =~ ^[0-9]+\\.[0-9]+\\.[0-9]+_[0-9]{3}$"
]
}
},
{
"provider": "script",
"script": "docker push \"quay.io/razee/mustachetemplate:${TRAVIS_TAG}\"",
"skip_cleanup": true,
"on": {
"tags": true,
"condition": [
"${TRAVIS_TAG} =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$"
]
}
},
{
"provider": "releases",
"file": [
"/tmp/resource.yaml"
],
"skip_cleanup": true,
"name": "${TRAVIS_TAG}",
"on": {
"tags": true,
"condition": [
"${TRAVIS_TAG} =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$"
]
},
"token": "${GITHUB_TOKEN}"
},
{
"provider": "npm",
"email": "${NPMJS_EMAIL}",
"skip_cleanup": true,
"on": {
"tags": true,
"condition": [
"${TRAVIS_TAG} =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$"
]
},
"api_token": "${NPMJS_API_KEY}"
}
]
}
Loading