Skip to content

Commit

Permalink
use npm instead of yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-zhang-at-salesforce committed May 3, 2024
1 parent 850d740 commit 9d8962d
Show file tree
Hide file tree
Showing 6 changed files with 4,937 additions and 2,742 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ jobs:
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: yarn install
- run: yarn lint
- run: npm install
- run: npm run lint
4 changes: 2 additions & 2 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ jobs:
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: yarn install
- run: yarn format
- run: npm install
- run: npm run format
12 changes: 6 additions & 6 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- run: yarn install
- run: yarn test
cache: 'npm'
- run: npm install
- run: npm run test
run-tests-win:
runs-on: windows-latest
strategy:
Expand All @@ -27,6 +27,6 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- run: yarn install
- run: yarn test
cache: 'npm'
- run: npm install
- run: npm run test
Loading

0 comments on commit 9d8962d

Please sign in to comment.