Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ jobs:
run: |
npm ci
npm run clean compile

- name: Update lib/ if necessary
run: |
git config user.name "lib/ helper"
git config user.email "actions@users.noreply.github.com"
git diff lib/ --quiet || (git add lib/ && git commit -m "Regenerate lib/" && git push")

- name: Check for changes
run: |
git diff --exit-code
git diff --exit-code