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.
25 lines
618 B
25 lines
618 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
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
- uses: subosito/flutter-action@4389e6cbc6cb8a4b18c628ff96ff90be0e926aa8
|
|
with:
|
|
channel: stable
|
|
- name: Init scripts
|
|
run: dart pub get
|
|
working-directory: web/_tool
|
|
- name: Verify packages
|
|
run: dart _tool/verify_packages.dart
|
|
working-directory: web
|