chore(deps): tighten dependencies #802
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: examples/counter | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
paths: | |
- "examples/counter/pubspec.yaml" | |
- "examples/counter/routes/**" | |
- "examples/counter/lib/**" | |
- "examples/counter/test/**" | |
- "examples/counter/e2e/**" | |
- ".github/workflows/examples_counter.yaml" | |
- "packages/dart_frog/lib/**" | |
- "packages/dart_frog/pubspec.yaml" | |
- "packages/dart_frog_cli/lib/**" | |
- "packages/dart_frog_cli/pubspec.yaml" | |
branches: | |
- main | |
jobs: | |
build: | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1 | |
with: | |
working_directory: examples/counter | |
analyze_directories: "routes test" | |
report_on: "routes" | |
docker: | |
uses: ./.github/workflows/.docker_tests.yaml | |
with: | |
setup: rm pubspec_overrides.yaml && dart pub global activate --source path ../../packages/dart_frog_cli | |
working_directory: examples/counter |