Skip to content

Commit d88e5e4

Browse files
committed
fix: update deployment workflow to use Ubuntu 22.04 and change Node.js version to 1
1 parent 1e3665c commit d88e5e4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/deployment.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ 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
2424
- uses: actions/setup-node@v1
2525
with:
26-
node-version: 16
26+
node-version: 1
2727
- uses: microsoft/playwright-github-action@v1
2828
- uses: actions/cache@v3
2929
with:
@@ -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:
@@ -42,7 +42,7 @@ jobs:
4242
- uses: actions/checkout@v2
4343
- uses: actions/setup-node@v1
4444
with:
45-
node-version: 16
45+
node-version: 1
4646
- uses: microsoft/playwright-github-action@v1
4747
- uses: actions/cache@v3
4848
with:
@@ -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:

0 commit comments

Comments
 (0)