Skip to content

Commit 01ec829

Browse files
committed
feat: global function aliases
1 parent 84330f1 commit 01ec829

18 files changed

+534
-280
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,20 @@ jobs:
2020
id-token: write # to enable use of OIDC for npm provenance
2121
actions: write
2222
steps:
23-
- name: Checkout
24-
uses: actions/checkout@v3
25-
with:
26-
fetch-depth: 0
23+
- uses: actions/checkout@v4
24+
2725
- name: Setup Node.js
28-
uses: actions/setup-node@v3
26+
uses: actions/setup-node@v4
2927
with:
30-
node-version: "lts/*"
28+
node-version: 'lts/*'
3129
cache: 'npm'
3230

3331
- name: Install dependencies
3432
run: npm ci
3533

34+
- name: Install Playwright Browsers
35+
run: npx playwright install --with-deps
36+
3637
- name: Test
3738
run: |
3839
npm run typecheck

eslint.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
/* eslint-disable n/no-extraneous-import */
44
/* eslint-disable @typescript-eslint/no-unsafe-argument */
55
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
6-
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
76
// @ts-check
87

98
import eslint from '@eslint/js'

0 commit comments

Comments
 (0)