1
0
mirror of https://github.com/flutter/samples.git synced 2026-03-23 04:41:38 +00:00
Files
samples/.github/workflows/verify-web-demos.yml
dependabot[bot] 1594d74199 Bump subosito/flutter-action from 2.4.0 to 2.6.1 (#1350)
* Bump subosito/flutter-action from 2.4.0 to 2.6.0

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.4.0 to 2.6.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](d8687e6979...c30358aafe)

---
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>

* subosito/flutter-action 2.6.1

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Brett Morgan <brett.morgan@gmail.com>
2022-07-27 09:35:33 +10:00

31 lines
815 B
YAML

name: Verify web demos
# Declare default permissions as read only.
permissions: read-all
on: [push, pull_request]
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@d171c3b028d844f2bf14e9fdec0c58114451e4bf
with:
submodules: true
fetch-depth: 0
- uses: subosito/flutter-action@6c2e035f2692eeac890d854df95630c72673f130
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