Skip to content

Commit 02e7df6

Browse files
committed
Update dependencies and move from yarn to npm
Notably, we can remove jest in favor of Node.js's built-in test runner.
1 parent 37a8f0e commit 02e7df6

File tree

6 files changed

+1674
-2958
lines changed

6 files changed

+1674
-2958
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)