Skip to content

Commit a95b3f9

Browse files
committed
Update package dependencies in package.json and package-lock.json, including the addition of @api-components/api-model-generator. Refactor web-test-runner configuration for improved middleware handling and remove deprecated settings. Modify GitHub Actions workflow to use Ubuntu 22.04 and update Node.js version to 18.x, enhancing CI performance and compatibility.
1 parent 6c37ee5 commit a95b3f9

File tree

4 files changed

+7177
-5794
lines changed

4 files changed

+7177
-5794
lines changed

.github/workflows/deployment.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
os: [ubuntu-20.04]
20+
os: [ubuntu-22.04]
2121
runs-on: ${{ matrix.os }}
2222
steps:
2323
- uses: actions/checkout@v2
@@ -32,7 +32,7 @@ jobs:
3232
restore-keys: |
3333
${{ runner.os }}-node-
3434
- name: Install dependencies
35-
run: npm ci
35+
run: npm install
3636
- name: Run tests
3737
run: npm test
3838
test_win:
@@ -51,7 +51,7 @@ jobs:
5151
restore-keys: |
5252
${{ runner.os }}-node-
5353
- name: Install dependencies
54-
run: npm ci
54+
run: npm install
5555
- name: Run tests
5656
run: npm test
5757
tag:
@@ -68,7 +68,7 @@ jobs:
6868
fetch-depth: 0
6969
- uses: actions/setup-node@v2
7070
with:
71-
node-version: '16.x'
71+
node-version: '18.x'
7272
registry-url: 'https://registry.npmjs.org'
7373
- uses: actions/cache@v3
7474
with:

0 commit comments

Comments
 (0)