Skip to content

Add workflow to check code generation #2

Add workflow to check code generation

Add workflow to check code generation #2

Workflow file for this run

name: Check Code Generation
on:
pull_request:
branches: [main]
paths:
- '.github/workflows/code_generation.yml'
- 'packages/generator/bin/**'
- 'packages/generator/lib/**'
- 'packages/generator/analysis_options.yaml'
- 'packages/generator/pubspec.yaml'
push:
branches: [main]
paths:
- '.github/workflows/code_generation.yml'
- 'packages/generator/bin/**'
- 'packages/generator/lib/**'
- 'packages/generator/analysis_options.yaml'
- 'packages/generator/pubspec.yaml'
jobs:
check_generation:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v4
- name: 🎯 Setup Dart
uses: dart-lang/setup-dart@v1
- name: 📦 Install package:win32 Dependencies
run: dart pub get
working-directory: packages/win32
- name: 📦 Install package:generator Dependencies
run: dart pub get
working-directory: packages/generator
- name: 📦 Install Melos
run: dart pub global activate melos
# - name: ⚙️ Bootstrap Melos
# run: dart pub run melos bootstrap
- name: 🚀 Generate Files
run: dart pub run melos run generate
- name: 📊 Check For Changes
run: git diff --exit-code