mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.3.0 to 3.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](ac59398561...24cb908017)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
947 B
YAML
37 lines
947 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
|
|
# TODO(johnpryan): https://github.com/flutter/samples/issues/1469
|
|
# - beta
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
- uses: subosito/flutter-action@dbf1fa04f4d2e52c33185153d06cdb5443aa189d
|
|
with:
|
|
channel: ${{ matrix.flutter_version }}
|
|
- name: Init scripts
|
|
run: dart pub get
|
|
working-directory: web/_tool
|
|
- name: Verify packages
|
|
run: dart run _tool/verify_packages.dart
|
|
working-directory: web
|