Skip to content

Commit eaf0456

Browse files
Merge pull request #498 from preactjs/manifest-v3-second-attempt
Manifest v3 second attempt
2 parents b12ee9b + 3ff06f6 commit eaf0456

File tree

17 files changed

+12744
-7250
lines changed

17 files changed

+12744
-7250
lines changed

.github/workflows/nodejs.yml

+12-11
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Node CI
33
on:
44
push:
55
branches:
6-
- main
6+
- main
77
pull_request:
88
branches:
9-
- main
9+
- main
1010

1111
jobs:
1212
build:
@@ -16,18 +16,19 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 20
19+
node-version: 22
2020
- name: Install Deps
21-
run: yarn
21+
run: npm i
2222
- name: Install Playwright
23-
run: yarn playwright install --with-deps && yarn playwright install-deps chromium
24-
- name: Run tests
25-
run: |
26-
yarn lint
27-
yarn test
28-
yarn build:chrome
29-
PREACT_VERSION=10 yarn test:e2e --retries 5
23+
run: npx playwright install --with-deps && npx playwright install-deps chromium
24+
- name: Lint
25+
run: npm run lint
26+
- name: Unit tests
27+
run: npm run test
28+
- name: Run e2e tests
29+
run: npm run build:chrome && npm run test:e2e --retries=5
3030
env:
31+
PREACT_VERSION: 10
3132
CI: true
3233
- name: Upload test results
3334
if: always()

0 commit comments

Comments
 (0)