mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
d7b27a17e3
* GitHub Actions: add install action to reduce duplication * debug, temp * expect strings add warnings * minor, consistency Co-authored-by: Chris Swithinbank <swithinbank@gmail.com>
38 lines
766 B
YAML
38 lines
766 B
YAML
name: Examples astro check
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
paths:
|
|
- 'examples/**'
|
|
- '.github/workflows/check.yml'
|
|
- 'scripts/smoke/check.js'
|
|
- 'packages/astro/src/@types/astro.ts'
|
|
|
|
env:
|
|
ASTRO_TELEMETRY_DISABLED: true
|
|
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
|
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
|
|
FORCE_COLOR: true
|
|
|
|
jobs:
|
|
check:
|
|
name: astro check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Tools & Dependencies
|
|
uses: ./.github/actions/install
|
|
|
|
- name: Build
|
|
run: pnpm run build
|
|
|
|
- name: Status
|
|
run: git status
|
|
|
|
- name: astro check
|
|
run: pnpm run test:check-examples
|