Skip to content

Commit 4ae9636

Browse files
committed
build: update dev & CI deps
1 parent ac358a2 commit 4ae9636

File tree

4 files changed

+27001
-10112
lines changed

4 files changed

+27001
-10112
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
on:
22
push:
33
branches:
4+
- "*.x"
45
- master
6+
- next
7+
- beta
58
name: Release
69
jobs:
710
build:
811
name: release
912
runs-on: ubuntu-latest
1013
steps:
11-
- uses: actions/checkout@master
12-
- uses: actions/setup-node@v1
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
1316
with:
14-
node-version: "12.x"
17+
node-version: 18
18+
cache: npm
1519
- run: npm ci
1620
- run: npm run build
1721
- run: npx semantic-release

.github/workflows/test.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,14 @@ jobs:
55
name: test
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v2
9-
- uses: actions/setup-node@v1
8+
- uses: actions/checkout@v3
9+
- uses: actions/setup-node@v3
1010
with:
11-
node-version: 12.x
12-
- uses: actions/cache@v1
13-
with:
14-
path: ~/.npm
15-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
16-
restore-keys: |
17-
${{ runner.os }}-node-
18-
- uses: microsoft/playwright-github-action@v1
11+
node-version: 18
12+
cache: npm
13+
- name: Install playwright browsers
14+
run: npx playwright install --with-deps
15+
- name: Run tests
16+
run: npx playwright test
1917
- run: npm ci
2018
- run: npm test

0 commit comments

Comments
 (0)