Skip to content

Commit

Permalink
build: update dev & CI deps
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m committed Jan 6, 2023
1 parent ac358a2 commit 4ae9636
Show file tree
Hide file tree
Showing 4 changed files with 27,001 additions and 10,112 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
on:
push:
branches:
- "*.x"
- master
- next
- beta
name: Release
jobs:
build:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "12.x"
node-version: 18
cache: npm
- run: npm ci
- run: npm run build
- run: npx semantic-release
Expand Down
18 changes: 8 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,14 @@ jobs:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12.x
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: microsoft/playwright-github-action@v1
node-version: 18
cache: npm
- name: Install playwright browsers
run: npx playwright install --with-deps
- name: Run tests
run: npx playwright test
- run: npm ci
- run: npm test

0 comments on commit 4ae9636

Please sign in to comment.