feat: add FirebaseFunctions.serve #36
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: Run CI Downgrade analyze | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' # every sunday at midnight | |
jobs: | |
test: | |
name: Test on ${{ matrix.os }} / ${{ matrix.dart }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: . | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
dart: stable | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dart-lang/[email protected] | |
with: | |
sdk: ${{ matrix.dart }} | |
- run: dart --version | |
- run: dart pub global activate dev_build | |
- run: dart pub global run dev_build:run_ci --pub-downgrade --analyze --no-override --recursive |