Skip to content

Commit 3692525

Browse files
committed
Update dependencies and move from yarn to npm
Notably, we can remove minipass-fetch in favor of Node.js's built-in fetch, and mocha in favor of Node.js's built-in test runner.
1 parent 22e4147 commit 3692525

File tree

7 files changed

+1174
-1205
lines changed

7 files changed

+1174
-1205
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
- uses: actions/setup-node@v4
2121
with:
2222
node-version: ${{ matrix.node-version }}
23-
- run: yarn --frozen-lockfile
24-
- run: yarn lint
25-
- run: yarn test
23+
- run: npm ci
24+
- run: npm run lint
25+
- run: npm test

0 commit comments

Comments
 (0)