Commit 85461b23 authored by Totara-thib's avatar Totara-thib Committed by Thibaud-Vdb
Browse files

ci: update node image of simple jobs using it

parent 0de7d3e0
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
# Changelog
All notable changes to this job will be documented in this file.

## [0.5.0] - 2023-07-19
* Update `node` image to `20-buster`

## [0.4.1] - 2023-02-28
* Fix broken documentation links

+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ from your `package.json` file.
| `NPM_BUILD_OPTIONS` | Options passed to your build script | ` ` |
| `NPM_BUILD_OUTPUT_FOLDER` | Path to the output produced by the `npm` build script used (path relative from the `PROJECT_ROOT`) | `build` |
| `PAGES_FOLDER` | Path where to copy the output to be exposed for deployment on [pages](https://r2devops.io/_/gitlab/r2devops/hub/pages) (path relative from the root of the repository) | `./website_build` |
| `IMAGE_TAG` | The default tag for the docker image | `18-buster`  |
| `IMAGE_TAG` | The default tag for the docker image | `20-buster`  |

## Example to deploy on pages

+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ npm_build:
    NPM_BUILD_OPTIONS: ""
    NPM_BUILD_OUTPUT_FOLDER: "build"
    PAGES_FOLDER: "./website_build"
    IMAGE_TAG: "18-buster"
    IMAGE_TAG: "20-buster"
  script:
    # Working directory
    - cd $PROJECT_ROOT
+3 −0
Original line number Diff line number Diff line
# Changelog
All notable changes to this job will be documented in this file.

## [0.5.0] - 2023-07-19
* Update `node` image to `20-buster`

## [0.4.3] - 2023-02-28
* Fix broken documentation links

+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ This job installs `npm` dependencies listed in your `package-lock.json` and expo
| `PROJECT_ROOT` | Relative path to the directory containing `package.json` (**see warning below**)  | ` ` |
| `NPM_INSTALL_OPTIONS` | Additional options for `npm install` | ` ` |
| `NPM_USE_CI` | Enable usage of `npm ci` instead of classic `npm install` | `true` |
| `IMAGE_TAG` | The default tag for the docker image | `18-buster`  |
| `IMAGE_TAG` | The default tag for the docker image | `20-buster`  |

!!! warning
    In the case you are updating `PROJECT_ROOT` and you want to have a properly working cache,
Loading