Skip to content

Commit 342e550

Browse files
committed
Breaking: upgrade to abstract-level 2
See `UPGRADING.md` for details. This also removes the majority of documentation from the README in favor of just linking to the README of `abstract-level` so that we don't have to maintain two copies. Category: change
1 parent 0056b12 commit 342e550

File tree

6 files changed

+15
-483
lines changed

6 files changed

+15
-483
lines changed

.github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
node: [12, 14, 16]
8+
node: [18, 20, 22]
99
name: Node ${{ matrix.node }}
1010
steps:
1111
- name: Checkout
@@ -15,14 +15,14 @@ jobs:
1515
with:
1616
node-version: ${{ matrix.node }}
1717
- name: Install
18-
run: npm install
18+
run: npm install --ignore-scripts
1919
- name: Install Playwright
20-
if: matrix.node == 16
20+
if: matrix.node == 22
2121
run: npx playwright install --with-deps
2222
- name: Test
2323
run: npm test
2424
- name: Test browsers
25-
if: matrix.node == 16
25+
if: matrix.node == 22
2626
run: npm run test-browsers-local
2727
- name: Coverage
2828
run: npm run coverage

0 commit comments

Comments
 (0)