-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: add
generate
check in CI (#221)
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Code generation | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: [opened, synchronize] | ||
paths: | ||
- 'pnpm-lock.yaml' | ||
- 'scripts/**' | ||
- '.github/workflows/generate.yml' | ||
push: | ||
branches: | ||
- main | ||
- 'renovate/**' | ||
paths: | ||
- 'pnpm-lock.yaml' | ||
- 'scripts/**' | ||
- '.github/workflows/generate.yml' | ||
|
||
jobs: | ||
generate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: ./.github/actions/pnpm | ||
|
||
- name: Clone oxc_linter project | ||
run: pnpm run clone | ||
|
||
- name: Remove current generated code | ||
run: rm -r ./src/generated/ | ||
|
||
- name: Generate from source code | ||
run: pnpm run generate | ||
|
||
- name: Format generated code | ||
run: pnpm run format | ||
|
||
- name: Check for git diff | ||
run: git diff --exit-code |