chore(deps): bump lints from 4.0.0 to 5.0.0 in /packages/generator #13
Workflow file for this run
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
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: windows-2019 | |
steps: | |
- name: 📚 Git Checkout | |
uses: actions/checkout@v4 | |
- name: 🎯 Setup Dart | |
uses: dart-lang/setup-dart@v1 | |
- name: 📦 Install Workspace Dependencies | |
run: dart pub get | |
- 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: 🚀 Run Code Generation | |
run: tools\generate --no-test | |
- name: 🔍 Verify Code Generation | |
run: git diff --exit-code |