Skip to content

Commit 6a3dc47

Browse files
Merge pull request #60 from cloudflare/update-deps
update dependencies, use npm, run typecheck, mark as sideeffect free
2 parents 68e02ed + 5a84243 commit 6a3dc47

File tree

5 files changed

+2557
-1712
lines changed

5 files changed

+2557
-1712
lines changed

.github/workflows/tests.yml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,20 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
15-
- name: Install pnpm
16-
uses: pnpm/action-setup@v4
17-
with:
18-
version: 10
19-
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v4
21-
with:
22-
node-version: ${{ matrix.node-version }}
23-
cache: 'pnpm'
24-
- name: Install dependencies
25-
run: pnpm install
26-
27-
- name: Run tests
28-
run: npm test
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 1
17+
18+
- uses: actions/setup-node@v4
19+
with:
20+
node-version: 20
21+
cache: "npm"
22+
23+
- name: Install dependencies
24+
run: npm install
25+
26+
- name: Type check
27+
run: npm run typecheck
28+
29+
- name: Run tests
30+
run: npm test

0 commit comments

Comments
 (0)