Skip to content

Commit

Permalink
build: 📦️ use pnpm instead of yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Dec 14, 2020
1 parent 9ff679e commit 0c14c19
Show file tree
Hide file tree
Showing 3 changed files with 9,009 additions and 8,314 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,17 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- run: npm install -g pnpm
- run: pnpm install
- run: pnpm run build
- name: Install Dependencies
run: yarn
run: pnpm install
- name: Lint
run: yarn lint
run: pnpm lint
- name: Test
run: yarn test --coverage --coverageProvider v8
run: pnpm test -- --coverage --coverageProvider v8
- name: Build
run: yarn build:ts
run: pnpm build:ts
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
Expand Down

0 comments on commit 0c14c19

Please sign in to comment.