Skip to content

Commit

Permalink
build: add generate check in CI (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sysix authored Nov 21, 2024
1 parent 774b632 commit cc7c989
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/generate.yml
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

0 comments on commit cc7c989

Please sign in to comment.