mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
947 B
37 lines
947 B
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@8ade135a41bc03ea155e62e844d188df1ea18608
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
- uses: subosito/flutter-action@cc97e1648fff6ca5cc647fa67f47e70f7895510b
|
|
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
|