This commit is contained in:
Gregor Martynus 2021-01-20 13:27:01 -08:00
parent 699875cedd
commit daa25abccf
2 changed files with 8 additions and 3 deletions

View File

@ -17,9 +17,9 @@ jobs:
strategy:
matrix:
node-version:
- 10
# - 10
- 12
- 14
# - 14
runs-on: ubuntu-latest
@ -32,7 +32,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- uses: bahmutov/npm-install@v1
- run: npm run test:ci
- run: npx ava test/integration.test.js
# separate job to set as required in branch protection,
# as the build names above change each time Node versions change

View File

@ -21,7 +21,12 @@ See https://github.com/semantic-release/semantic-release/blob/master/docs/suppor
process.exit(1);
}
console.log("DEBUG START ==========")
console.log('process.env')
console.log(process.env)
console.log('envCi({ env: process.env })')
console.log(require('env-ci')({ env: process.env }))
console.log("DEBUG END ==========")
execa('git', ['--version'])
.then(({stdout}) => {