Skip to content

Commit 93c20df

Browse files
authored
Merge pull request #96 from SkrzypMajster/feat/ZN-522-update-project-node-version-to-latest-lts
feat: [ZN-522] Update project Node version to the latest LTS
2 parents 1825f39 + dae7cde commit 93c20df

13 files changed

Lines changed: 68 additions & 36 deletions

File tree

.changeset/lemon-berries-beg.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-starter-boilerplate': patch
3+
---
4+
5+
feat: [ZN-522] Update project Node version to the latest LTS

.github/workflows/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@v2
9-
- name: Setup Node.js 16
9+
- name: Setup Node.js 18
1010
uses: actions/setup-node@v3
1111
with:
12-
node-version: 16
12+
node-version: 18
1313
- name: Copy envs
1414
run: cp .env.dist .env
1515
- name: Install root dependencies

.github/workflows/deploy-staging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
1515
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
1616
aws-region: ${{ secrets.AWS_REGION }}
17-
- name: Setup Node.js 16
17+
- name: Setup Node.js 18
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 16
20+
node-version: 18
2121
- name: Install dependencies
2222
run: npm ci
2323
- name: Build

.github/workflows/e2e.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
prepare_app:
77
runs-on: ubuntu-latest
88
container:
9-
image: mcr.microsoft.com/playwright:v1.29.1-focal
9+
image: mcr.microsoft.com/playwright:v1.31.2-focal
1010
steps:
1111
- uses: actions/checkout@master
1212
- name: Copy envs
@@ -25,7 +25,7 @@ jobs:
2525
needs: prepare_app
2626
runs-on: ubuntu-latest
2727
container:
28-
image: mcr.microsoft.com/playwright:v1.29.1-focal
28+
image: mcr.microsoft.com/playwright:v1.31.2-focal
2929
defaults:
3030
run:
3131
working-directory: e2e-playwright
@@ -56,7 +56,7 @@ jobs:
5656
needs: prepare_app
5757
runs-on: ubuntu-latest
5858
container:
59-
image: mcr.microsoft.com/playwright:v1.29.1-focal
59+
image: mcr.microsoft.com/playwright:v1.31.2-focal
6060
options: --user 1001
6161
defaults:
6262
run:
@@ -88,7 +88,7 @@ jobs:
8888
needs: prepare_app
8989
runs-on: ubuntu-latest
9090
container:
91-
image: mcr.microsoft.com/playwright:v1.29.1-focal
91+
image: mcr.microsoft.com/playwright:v1.31.2-focal
9292
defaults:
9393
run:
9494
working-directory: e2e-playwright

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: Checkout Repo
1616
uses: actions/checkout@v3
1717

18-
- name: Setup Node.js 16
18+
- name: Setup Node.js 18
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: 16
21+
node-version: 18
2222

2323
- name: Install Dependencies
2424
run: npm ci

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# START PLAYWRIGHT SPECIFIC CONFIG
22
default:
3-
image: mcr.microsoft.com/playwright:v1.29.1-focal
3+
image: mcr.microsoft.com/playwright:v1.31.2-focal
44

55
stages:
66
- build
@@ -162,7 +162,7 @@ deploy_to_staging:
162162
stage: deploy
163163
environment: staging
164164
image:
165-
name: tshio/awscli-docker-compose-pipelines:0.0.5
165+
name: tshio/awscli-docker-compose-pipelines:0.0.6
166166
entrypoint: ['']
167167
script:
168168
- npm ci

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
save-exact=true
2+
engine-strict=true

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v18

bitbucket-pipelines.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ definitions:
44
npm: $HOME/.npm
55
steps:
66
- step: &deploy-s3
7-
image: tshio/awscli-docker-compose-pipelines:0.0.5
7+
image: tshio/awscli-docker-compose-pipelines:0.0.6
88
script:
99
- npm ci
1010
- npm run build
@@ -14,7 +14,7 @@ definitions:
1414
pipelines:
1515
default:
1616
- step:
17-
image: node:16.16.0
17+
image: node:18
1818
caches:
1919
- node
2020
- npm
@@ -30,7 +30,7 @@ pipelines:
3030
'**':
3131
- step:
3232
name: build and install
33-
image: mcr.microsoft.com/playwright:v1.29.1-focal
33+
image: mcr.microsoft.com/playwright:v1.31.2-focal
3434
caches:
3535
- node
3636
- npm
@@ -45,23 +45,23 @@ pipelines:
4545
- parallel:
4646
- step:
4747
name: e2e - chrome
48-
image: mcr.microsoft.com/playwright:v1.29.1-focal
48+
image: mcr.microsoft.com/playwright:v1.31.2-focal
4949
caches:
5050
- node
5151
script:
5252
- cp ./e2e-playwright/.env.dist ./e2e-playwright/.env
5353
- cd e2e-playwright && npm run test:chrome cd ..
5454
- step:
5555
name: e2e - firefox
56-
image: mcr.microsoft.com/playwright:v1.29.1-focal
56+
image: mcr.microsoft.com/playwright:v1.31.2-focal
5757
caches:
5858
- node
5959
script:
6060
- cp ./e2e-playwright/.env.dist ./e2e-playwright/.env
6161
- cd e2e-playwright && npm run test:firefox cd ..
6262
- step:
6363
name: e2e - safari
64-
image: mcr.microsoft.com/playwright:v1.29.1-focal
64+
image: mcr.microsoft.com/playwright:v1.31.2-focal
6565
caches:
6666
- node
6767
script:

e2e-playwright/package-lock.json

Lines changed: 40 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)