Skip to content

feat: add mix_tailwinds Tailwind utility layer (POC) #2844

feat: add mix_tailwinds Tailwind utility layer (POC)

feat: add mix_tailwinds Tailwind utility layer (POC) #2844

Workflow file for this run

name: Test Workflow
on:
push:
branches: [main, next]
paths-ignore:
- 'examples/**'
- 'website/**'
- 'assets/**'
- 'tool/**'
pull_request:
branches: [main, next]
paths-ignore:
- 'examples/**'
- 'test_resources/**'
- 'website/**'
- 'assets/**'
- 'tool/**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
format:
name: Format Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: kuhnroyal/flutter-fvm-config-action@v2
id: fvm-config-action
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }}
channel: ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }}
- name: Check formatting
run: dart format --set-exit-if-changed .
test:
name: Test
uses: btwld/dart-actions/.github/workflows/ci.yml@main
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
with:
flutter-version: 'stable'
run-dcm: true