1
0
mirror of https://github.com/flutter/samples.git synced 2026-03-25 22:01:51 +00:00
Files
samples/.github/workflows/verify-web-demos.yml
dependabot[bot] fcd525f800 Bump subosito/flutter-action from 2.6.2 to 2.7.0 (#1420)
Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.6.2 to 2.7.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](9d48f4efd5...de3cdb9a4b)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-09 06:09:06 +10:00

36 lines
865 B
YAML

name: Verify web demos
# Declare default permissions as read only.
permissions: read-all
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
verify-web-demos:
runs-on: ubuntu-latest
if: github.repository == 'flutter/samples'
strategy:
matrix:
flutter_version:
- stable
- beta
steps:
- name: Checkout
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
with:
submodules: true
fetch-depth: 0
- uses: subosito/flutter-action@de3cdb9a4b2f535dc0fa0da445a46b10b1bfefc7
with:
channel: ${{ matrix.flutter_version }}
- name: Init scripts
run: dart pub get
working-directory: web/_tool
- name: Verify packages
run: dart _tool/verify_packages.dart
working-directory: web