Skip to content

Commit

Permalink
ci: Update check-dist workflow to use yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
jamacku committed Oct 19, 2022
1 parent 4e4cb80 commit 3b2603e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ jobs:
- uses: actions/checkout@v3

- name: Set Node.js 18.x
uses: actions/setup-node@v3.5.1
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install dependencies
run: npm ci
run: yarn install

- name: Rebuild the dist/ directory
run: |
npm run build
npm run package
yarn run build
yarn run package
- name: Compare the expected and actual dist/ directories
run: |
Expand Down

0 comments on commit 3b2603e

Please sign in to comment.