Skip to content

Commit

Permalink
chore: update to use Node 18 (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
lholmquist authored Feb 22, 2023
1 parent fed26d5 commit 3dc673c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -22,4 +22,4 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.node-version }}
flag-name: run-${{ matrix.node-version }}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"pretest": "eslint --ignore-path .gitignore .",
"test": "nyc --reporter=lcov mocha",
"release": "standard-version -a",
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-16",
"openshift:enable:trace": "nodeshift --deploy.env NODE_OPTIONS='--require ./tracing.js' --dockerImage=registry.access.redhat.com/ubi8/nodejs-16",
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-18",
"openshift:enable:trace": "nodeshift --deploy.env NODE_OPTIONS='--require ./tracing.js' --dockerImage=registry.access.redhat.com/ubi8/nodejs-18",
"start": "node .",
"dev": "NODE_CONFIGMAP_PATH=./app-config.yml node . | npx pino-pretty",
"dev:debug": "DEBUG=* node . "
Expand Down

0 comments on commit 3dc673c

Please sign in to comment.