Skip to content

Commit

Permalink
Merge pull request #9 from mbwhite/updates
Browse files Browse the repository at this point in the history
Node versions update
  • Loading branch information
mbwhite authored Jun 8, 2024
2 parents 6471902 + 62eb3ac commit 2fe7927
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# SPDX-License-Identifier: Apache-2.0
#
FROM node:16 AS builder
FROM node:20 AS builder

WORKDIR /usr/src/app

Expand All @@ -10,7 +10,7 @@ COPY --chown=node:node . /usr/src/app
RUN npm ci && npm run build && npm shrinkwrap


FROM node:16 AS production
FROM node:20 AS production

# Setup tini to work better handle signals
ENV TINI_VERSION v0.19.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"build": "npm run format && npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty && npm link",
"release": "standard-version",
"test": "jest",
"test": "jest --passWithNoTests",
"postinstall": "node-config-ts"
},
"repository": {
Expand Down

0 comments on commit 2fe7927

Please sign in to comment.