Skip to content

Commit e2f7397

Browse files
authored
chore(deps): bump deps (#1014)
1 parent 3c5a526 commit e2f7397

File tree

7 files changed

+3070
-2768
lines changed

7 files changed

+3070
-2768
lines changed

.github/workflows/checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
- name: Set up node
1818
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
1919
with:
20-
node-version: '18'
20+
node-version: '22'
2121
registry-url: 'https://registry.npmjs.org'
2222
cache: 'npm'
2323

2424
- name: Install dependencies
25-
run: npm install
25+
run: npm ci
2626

2727
# Run Prettier
2828
- name: Run Prettier

.github/workflows/deploy.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,16 @@ jobs:
1818
steps:
1919
- name: Cached LFS checkout
2020
uses: nschloe/action-cached-lfs-checkout@f46300cd8952454b9f0a21a3d133d4bd5684cfc2
21-
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
21+
22+
- name: Set up node
23+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
2224
with:
23-
node-version: 18.x
24-
cache: npm
25+
node-version: '22'
26+
registry-url: 'https://registry.npmjs.org'
27+
cache: 'npm'
2528

2629
- name: Install dependencies
27-
run: npm clean-install
30+
run: npm ci
2831

2932
- name: Build website
3033
run: npm run build

.github/workflows/preview.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,18 @@ jobs:
1919
- name: Cached LFS checkout
2020
uses: nschloe/action-cached-lfs-checkout@f46300cd8952454b9f0a21a3d133d4bd5684cfc2
2121

22-
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
22+
- name: Set up node
23+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
2324
with:
24-
node-version: 18.x
25-
cache: npm
25+
node-version: '22'
26+
registry-url: 'https://registry.npmjs.org'
27+
cache: 'npm'
2628

27-
- name: Install and Build
28-
run: |
29-
npm clean-install
30-
npm run build
29+
- name: Install dependencies
30+
run: npm ci
31+
32+
- name: Build website
33+
run: npm run build
3134
env:
3235
BASE_URL: /pr-preview/pr-${{ github.event.number }}
3336

.github/workflows/test-deploy.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,15 @@ jobs:
1414
steps:
1515
- name: Cached LFS checkout
1616
uses: nschloe/action-cached-lfs-checkout@f46300cd8952454b9f0a21a3d133d4bd5684cfc2
17-
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
17+
- name: Set up node
18+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
1819
with:
19-
node-version: 18.x
20-
cache: npm
20+
node-version: '22'
21+
registry-url: 'https://registry.npmjs.org'
22+
cache: 'npm'
2123

2224
- name: Install dependencies
23-
run: npm clean-install
25+
run: npm ci
26+
2427
- name: Test build website
2528
run: npm run build

0 commit comments

Comments
 (0)