Skip to content

Commit

Permalink
Use yarn build instead of npm run build
Browse files Browse the repository at this point in the history
  • Loading branch information
tomekzaw committed Apr 12, 2024
1 parent b52478d commit 8096238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
- name: Verify there's no parser diff
working-directory: parser
run: |
npm run build
yarn build
if ! git diff --name-only --exit-code; then
# shellcheck disable=SC2016
echo 'Error: Parser diff detected! Please run `cd parser && npm run build` and commit the changes.'
echo 'Error: Parser diff detected! Please run `cd parser && yarn build` and commit the changes.'
exit 1
fi
Expand Down

0 comments on commit 8096238

Please sign in to comment.