Skip to content

Commit

Permalink
Create title_validation copy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tilucasoli committed Dec 3, 2024
1 parent ec7e98d commit c3dd257
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/title_validation copy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Lint PR"

on: push

jobs:
production:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup flutter
uses: subosito/flutter-action@v2
with:
channel: stable

- name: Bootstrap App
shell: bash
run: |
flutter pub get
- name: Bootstrap Widgetbook
working-directory: widgetbook
shell: bash
run: |
cd packages/remix/demo
flutter pub get
dart run build_runner build -d
- name: Build Widgetbook
working-directory: widgetbook
shell: bash
run: |
cd packages/remix/demo
flutter build web
- name: Install Widgetbook CLI
run: dart pub global activate widgetbook_cli

- name: Upload Widgetbook
working-directory: widgetbook
run: widgetbook cloud build push --api-key ${{ secrets.WIDGETBOOK_API_KEY }}

0 comments on commit c3dd257

Please sign in to comment.