Skip to content

Align tutorial objectives, content, and quizzes for data and error ha… #9518

Align tutorial objectives, content, and quizzes for data and error ha…

Align tutorial objectives, content, and quizzes for data and error ha… #9518

Workflow file for this run

name: build
on:
# Run on PRs and pushes to the default branch.
push:
branches:
- main
pull_request:
branches:
- main
schedule:
# Run build check every day at 3 AM PST.
- cron: "0 11 * * 0"
# Declare default permissions as read only.
permissions:
contents: read
env:
# Configure analytics reporting for pub.
PUB_ENVIRONMENT: bot.github
jobs:
build:
name: Build site and check links
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
with:
persist-credentials: false
- uses: dart-lang/setup-dart@6afc89df92d6eb3834022f73cd65adc8cdfcb92d
with:
sdk: beta
- name: Fetch Dart packages
run: dart pub get
- name: Install firebase-tools
run: curl -sL https://firebase.tools | bash
- name: Build site
run: dart run dash_site build
- name: Check for broken Markdown links
run: dart run dash_site check-link-references
- name: Check internal site links are functional
run: dart run dash_site check-links