We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a472761 commit 5630c0cCopy full SHA for 5630c0c
.github/workflows/definitely-typed.yml
@@ -17,13 +17,17 @@ jobs:
17
with:
18
node-version: 18
19
20
+ - name: Install pnpm
21
+ run: |
22
+ npm install -g pnpm
23
+
24
- name: Clone DefinitelyTyped
25
run: |
26
git clone https://github.com/DefinitelyTyped/DefinitelyTyped.git
27
- - name: Install dependencies in DefinitelyTyped
28
+ - name: Install dependencies in DefinitelyTyped using pnpm
29
working-directory: ./DefinitelyTyped
- run: npm install
30
+ run: pnpm install
31
32
- name: Replace dom.d.ts and dom.iterable.d.ts
33
@@ -32,4 +36,4 @@ jobs:
36
37
- name: Run tests in DefinitelyTyped
34
38
35
- run: npm run test-all
39
+ run: pnpm run test-all
0 commit comments