Skip to content

Commit 684ff57

Browse files
fix: Use npm rather than yarn
1 parent 54fc790 commit 684ff57

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.github/workflows/nodejs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ jobs:
1818
uses: actions/setup-node@v2
1919
with:
2020
node-version: ${{ matrix.node }}
21-
cache: yarn
21+
cache: npm
2222

2323
- name: Install deps and build (with cache)
24-
run: yarn
24+
run: npm i
2525

2626
- name: Lint
27-
run: yarn lint
27+
run: npm run lint
2828

2929
- name: Test
30-
run: yarn test --ci --coverage --maxWorkers=2
30+
run: npm run test --ci --coverage --maxWorkers=2
3131

3232
- name: Build
33-
run: yarn build
33+
run: npm run build
3434

3535
- name: Codecov
3636
uses: codecov/codecov-action@v1.0.15

.npmignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
node_modules
77
npm-debug.log
88

9-
# Yarn
10-
yarn.lock
11-
129
# parcel bundler cache
1310
.cache
1411

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)