Skip to content
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
node-version:
- 22.21.0
- 24.11.0
- 24.11.1
steps:
- name: checkout
uses: actions/checkout@v5.0.0
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
- name: prepare node
uses: actions/setup-node@v6.0.0
with:
node-version: 24.11.0
node-version: 24.11.1
cache: npm
cache-dependency-path: package-lock.json
- name: install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: prepare node
uses: actions/setup-node@v6.0.0
with:
node-version: 24.11.0
node-version: 24.11.1
cache: npm
- name: install
run: npm ci
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/update_package_lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,21 @@ on:
jobs:
update_package_lock:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 24.11.0
browser:
- chrome
steps:
- name: checkout
uses: actions/checkout@v5.0.0
- name: prepare node
uses: actions/setup-node@v6.0.0
with:
node-version: ${{ matrix.node-version }}
node-version: 24.11.1
- name: remove lock
run: rm package-lock.json
- name: install playwright
run: npx playwright install
- name: test
run: npm install-test
env:
BROWSER: ${{ matrix.browser }}
BROWSER: chrome
- name: create pull request
uses: gr2m/create-or-update-pull-request-action@v1.10.1
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_readme_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: prepare node
uses: actions/setup-node@v6.0.0
with:
node-version: 24.11.0
node-version: 24.11.1
- name: install
run: npm ci
- name: run docs
Expand Down
Loading