Skip to content

Commit

Permalink
Rollback to use Node 19
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Alberto Hernandez authored and adamsaghy committed Sep 6, 2023
1 parent e0b1aea commit b6efd0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Use Node.js 20
- name: Use Node.js 19
uses: actions/setup-node@v1
with:
# no support for lts as of now with github actions.
# issue link : https://github.com/actions/setup-node/issues/26
# lts/gallium node v20.5.1 (npm v9.8.0)
node-version: '20.5.1'
# lts/gallium node v19.7.0 (npm v9.5.0)
node-version: '19.7.0'
- name: Angular CLI install
run : npm install -g --silent @angular/[email protected]

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
###############
### STAGE 1: Build app
###############
ARG BUILDER_IMAGE=node:20-alpine
ARG BUILDER_IMAGE=node:19-alpine
ARG NGINX_IMAGE=nginx:1.19.3

FROM $BUILDER_IMAGE as builder
Expand Down

0 comments on commit b6efd0e

Please sign in to comment.