Skip to content

Commit 09cd430

Browse files
authored
Merge pull request #541 from ReadAlongs/dev.ej/fresh-package-lock
refresh many dependencies
2 parents f564738 + 6f4d6d7 commit 09cd430

12 files changed

Lines changed: 13341 additions & 16141 deletions

File tree

.github/workflows/bundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
persist-credentials: false
1515
- uses: actions/setup-node@v6
1616
with:
17-
node-version: "22"
17+
node-version: "24"
1818
package-manager-cache: false
1919
- run: npm install -g npm@latest
2020
- run: npm ci

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
persist-credentials: false
1818
- uses: actions/setup-node@v6
1919
with:
20-
node-version: "22"
20+
node-version: "24"
2121
- run: npm install -g npm@latest
2222
- run: npm ci
2323
- run: npx update-browserslist-db@latest

.github/workflows/dev-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
persist-credentials: false
1919
- uses: actions/setup-node@v6
2020
with:
21-
node-version: "22"
21+
node-version: "24"
2222
- run: npm install -g npm@latest
2323
- run: npm ci
2424
- run: npx update-browserslist-db@latest

.github/workflows/end-to-end-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,22 @@ jobs:
1919
persist-credentials: false
2020
- uses: actions/setup-node@v6
2121
with:
22-
node-version: 22
22+
node-version: 24
2323
- run: npm install -g npm@latest
2424
- name: Install everything
2525
run: npm ci
2626

2727
- name: Automated license checking
2828
env:
2929
PROD_LICENSES: "MIT;BSD;0BSD;BSD-2-Clause;BSD-3-Clause;ISC;Apache-2.0"
30-
DEV_LICENSES: "Python-2.0;CC0-1.0;CC-BY-3.0;CC-BY-4.0;Apache 2.0;Unlicense;BlueOak-1.0.0;LGPL-3.0-only"
30+
DEV_LICENSES: "Python-2.0;CC0-1.0;CC-BY-3.0;CC-BY-4.0;Apache 2.0;Unlicense;BlueOak-1.0.0;LGPL-3.0;LGPL-3.0-only"
3131
OK_BUT_NOT_AUTODETECTED: "@nxext/common@21.0.0;readalong-studio@0.0.0"
3232
run: |
3333
npx license-checker --summary --production --onlyAllow "$PROD_LICENSES" --excludePackages "$OK_BUT_NOT_AUTODETECTED"
3434
npx license-checker --summary --onlyAllow "$DEV_LICENSES;$PROD_LICENSES" --excludePackages "$OK_BUT_NOT_AUTODETECTED"
3535
3636
- name: Run Cypress tests for web-component
37-
uses: cypress-io/github-action@2ad32e649e4db26c07674ebae31a297601dbcbaf # v6.10.8
37+
uses: cypress-io/github-action@783cb3f07983868532cabaedaa1e6c00ff4786a8 # v7.1.9
3838
with:
3939
install: false
4040
start: |
@@ -81,7 +81,7 @@ jobs:
8181

8282
- uses: actions/setup-node@v6
8383
with:
84-
node-version: lts/*
84+
node-version: 24
8585
- run: npm install -g npm@latest
8686

8787
- name: Install and run the back-end API

.github/workflows/pr-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
persist-credentials: false
2323
- uses: actions/setup-node@v6
2424
with:
25-
node-version: "22"
25+
node-version: "24"
2626
- run: npm install -g npm@latest
2727
if: github.event.action != 'closed'
2828
- name: Install

.github/workflows/windows-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- main
6+
workflow_dispatch:
67
jobs:
78
tests-on-windows:
89
runs-on: windows-latest
@@ -15,7 +16,7 @@ jobs:
1516
persist-credentials: false
1617
- uses: actions/setup-node@v6
1718
with:
18-
node-version: 22
19+
node-version: 24
1920
- run: npm install -g npm@latest
2021
- run: npm ci --verbose
2122
- run: npx update-browserslist-db@latest
@@ -25,7 +26,7 @@ jobs:
2526
npx nx test:once studio-web
2627
2728
- name: Cypress run for web-component
28-
uses: cypress-io/github-action@2ad32e649e4db26c07674ebae31a297601dbcbaf # v6.10.8
29+
uses: cypress-io/github-action@783cb3f07983868532cabaedaa1e6c00ff4786a8 # v7.1.9
2930
with:
3031
install: true # fails on Windows with install: false
3132
start: |

nx.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@
2323
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
2424
}
2525
},
26-
"useInferencePlugins": false
26+
"useInferencePlugins": false,
27+
"analytics": false
2728
}

0 commit comments

Comments
 (0)