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.
samples/.github/workflows/verify-web-demos.yml

31 lines
815 B

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'
2 years ago
strategy:
matrix:
flutter_version:
- stable
- beta
steps:
- name: Checkout
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
with:
submodules: true
fetch-depth: 0
- uses: subosito/flutter-action@6c2e035f2692eeac890d854df95630c72673f130
with:
2 years ago
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