Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #992 from travi/renovate/master-octokit-auth-netrc…
Browse files Browse the repository at this point in the history
…-3.x
  • Loading branch information
travi authored Oct 27, 2023
2 parents 20831f8 + ae53e4e commit a53659e
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 24 deletions.
17 changes: 4 additions & 13 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,15 @@ jobs:
cache: npm
- run: npm clean-install
- run: npm audit signatures
- run: NODE_OPTIONS=--no-experimental-fetch npm test
- run: npm test
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
verify-matrix:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 16.14.0
- 18.0.0
- 18
- 19
include:
- node: 18
options: '--no-experimental-fetch'
- node: 18.0.0
options: '--no-experimental-fetch'
- node: 19
options: '--no-experimental-fetch'
- 18.17.0
- 20.6.1
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup node ${{ matrix.node_version }}
Expand All @@ -51,7 +42,7 @@ jobs:
node-version: ${{ matrix.node }}
cache: npm
- run: npm clean-install
- run: NODE_OPTIONS="${{ matrix.options }}" npm test
- run: npm test
release:
needs:
- verify
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

NODE_OPTIONS=--no-experimental-fetch npm test
npm test
22 changes: 15 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "0.0.0-semantically-released",
"type": "module",
"engines": {
"node": "^16.14 || >=18"
"node": "^18.17 || >=20.6.1"
},
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"repository": "travi/github-scaffolder",
Expand All @@ -28,7 +28,7 @@
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"pretest:integration": "run-s build",
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
"test:integration:base": "NODE_OPTIONS=\"--enable-source-maps $NODE_OPTIONS\" cucumber-js test/integration",
"test:integration:base": "NODE_OPTIONS=\"--enable-source-maps --no-experimental-fetch\" cucumber-js test/integration",
"test:integration:debug": "DEBUG=test,nock.* run-s test:integration",
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
"test:integration:focus": "run-s 'test:integration:base -- --profile focus'",
Expand All @@ -54,7 +54,7 @@
"@octokit/rest": "^19.0.0",
"@travi/cli-messages": "1.1.1",
"git-config": "0.0.7",
"octokit-auth-netrc": "^2.0.0"
"octokit-auth-netrc": "^3.0.0"
},
"devDependencies": {
"@cucumber/cucumber": "9.6.0",
Expand Down

0 comments on commit a53659e

Please sign in to comment.