Skip to content

Commit

Permalink
♻️ Switch from Yarn to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
screendriver committed May 27, 2020
1 parent 776b2a5 commit 533f8cd
Show file tree
Hide file tree
Showing 6 changed files with 3,477 additions and 2,538 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm ci
- name: Check source code
run: yarn lint
run: npm run lint
- name: Compile source code
run: yarn compile
run: npm run compile
- name: Run tests
run: |
yarn test:unit:coverage
yarn test:integration
npm run test:unit:coverage
npm run test:integration
- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v1
with:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules
target
yarn-error.log
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact = true
1 change: 0 additions & 1 deletion .yarnrc

This file was deleted.

Loading

0 comments on commit 533f8cd

Please sign in to comment.