Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
cache: 'npm'

- name: Install npm dependencies
run: npm ci
run: npm install -g npm@$(jq -r .engines.npm package.json | tr -d ">=^~") && npm ci
env:
CI: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
cache: 'npm'

- name: Install npm dependencies
run: npm ci
run: npm install -g npm@$(jq -r .engines.npm package.json | tr -d ">=^~") && npm ci

- name: Build plugin for release
run: npm run build:prod
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
node-version-file: '.nvmrc'

- name: Install npm dependencies
run: npm ci
run: npm install -g npm@$(jq -r .engines.npm package.json | tr -d ">=^~") && npm ci

- name: Build plugin for release
run: npm run build:prod
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-e2e-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
cache: 'npm'

- name: Install npm dependencies
run: npm ci
run: npm install -g npm@$(jq -r .engines.npm package.json | tr -d ">=^~") && npm ci

- name: Build development assets
run: npm run build:dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
node-version-file: '.nvmrc'

- name: Install npm dependencies
run: npm ci
run: npm install -g npm@$(jq -r .engines.npm package.json | tr -d ">=^~") && npm ci

- name: Build development assets
run: npm run build:dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-jest-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cache: 'npm'

- name: Install npm dependencies
run: npm ci
run: npm install -g npm@$(jq -r .engines.npm package.json | tr -d ">=^~") && npm ci

- name: Run Jest tests${{ inputs.coverage && ' with coverage' || '' }}
run: npm run test:js${{ inputs.coverage && ':coverage' || '' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
node-version-file: '.nvmrc'

- name: Install npm dependencies
run: npm ci
run: npm install -g npm@$(jq -r .engines.npm package.json | tr -d ">=^~") && npm ci

- name: Run Jest tests${{ inputs.coverage && ' with coverage' || '' }}
run: npm run test:js${{ inputs.coverage && ':coverage' || '' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-lint-css-js-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
cache: 'npm'

- name: Install npm dependencies
run: npm ci
run: npm install -g npm@$(jq -r .engines.npm package.json | tr -d ">=^~") && npm ci

- name: Run ESLint
id: eslint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-lint-css-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
node-version-file: '.nvmrc'

- name: Install npm dependencies
run: npm ci
run: npm install -g npm@$(jq -r .engines.npm package.json | tr -d ">=^~") && npm ci

- name: Run ESLint
id: eslint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-phpunit-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
cache: 'npm'

- name: Install npm dependencies
run: npm ci
run: npm install -g npm@$(jq -r .engines.npm package.json | tr -d ">=^~") && npm ci

- name: Build development assets
run: npm run build:dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
node-version-file: '.nvmrc'

- name: Install npm dependencies
run: npm ci
run: npm install -g npm@$(jq -r .engines.npm package.json | tr -d ">=^~") && npm ci

- name: Build development assets
run: npm run build:dev
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22
24
18 changes: 3 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "plugin-skeleton-d",
"private": true,
"engines": {
"node": ">=22.21.1",
"npm": ">=10.9.4"
"node": ">=24.16.0",
"npm": ">=11.16.0"
},
"files": [
"assets",
Expand Down
Loading