2021-07-22 15:51:07 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
2023-03-01 14:02:35 +00:00
|
|
|
workflow_dispatch:
|
2021-07-22 15:51:07 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-02-24 19:57:02 +00:00
|
|
|
merge_group:
|
2021-07-22 15:51:07 +00:00
|
|
|
pull_request:
|
2021-09-15 04:23:39 +00:00
|
|
|
paths-ignore:
|
2022-11-11 19:09:01 +00:00
|
|
|
- ".vscode/**"
|
|
|
|
- "**/*.md"
|
2023-06-20 19:37:04 +00:00
|
|
|
- ".github/ISSUE_TEMPLATE/**"
|
2021-07-22 15:51:07 +00:00
|
|
|
|
2022-08-12 06:00:38 +00:00
|
|
|
# Automatically cancel older in-progress jobs on the same branch
|
2022-08-10 21:34:01 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
|
2022-08-12 06:00:38 +00:00
|
|
|
cancel-in-progress: true
|
2021-11-29 21:11:15 +00:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
2022-06-30 21:26:37 +00:00
|
|
|
env:
|
|
|
|
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
|
|
|
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
|
|
|
|
FORCE_COLOR: true
|
|
|
|
ASTRO_TELEMETRY_DISABLED: true
|
2023-04-19 08:59:09 +00:00
|
|
|
# 7 GiB by default on GitHub, setting to 6 GiB
|
|
|
|
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
|
|
|
|
NODE_OPTIONS: --max-old-space-size=6144
|
2022-06-30 21:26:37 +00:00
|
|
|
|
2021-07-22 15:51:07 +00:00
|
|
|
jobs:
|
2022-08-10 21:34:01 +00:00
|
|
|
lint:
|
|
|
|
name: Lint
|
2022-11-11 19:09:01 +00:00
|
|
|
timeout-minutes: 3
|
2022-08-10 21:34:01 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2022-10-28 18:36:50 +00:00
|
|
|
- name: Setup PNPM
|
2023-02-24 15:52:43 +00:00
|
|
|
uses: pnpm/action-setup@v2
|
2022-10-28 18:36:50 +00:00
|
|
|
|
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 16
|
2022-11-11 19:09:01 +00:00
|
|
|
cache: "pnpm"
|
2022-10-28 18:36:50 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
2022-08-10 21:34:01 +00:00
|
|
|
|
|
|
|
# Lint autofix cannot run on forks, so just skip those! See https://github.com/wearerequired/lint-action/issues/13
|
|
|
|
- name: Lint (External)
|
|
|
|
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login != github.repository_owner }}
|
|
|
|
run: pnpm run lint
|
|
|
|
|
|
|
|
# Otherwise, run lint autofixer
|
|
|
|
- name: Lint
|
|
|
|
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}
|
2022-09-22 15:37:41 +00:00
|
|
|
uses: wearerequired/lint-action@v2.1.0
|
2022-08-10 21:34:01 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
eslint: true
|
2022-09-22 15:37:41 +00:00
|
|
|
eslint_extensions: js,ts,cts,mts,cjs,mjs
|
2022-08-10 21:34:01 +00:00
|
|
|
prettier: false
|
2022-09-22 15:37:41 +00:00
|
|
|
auto_fix: false
|
|
|
|
git_name: fredkbot
|
|
|
|
git_email: fred+astrobot@astro.build
|
2022-11-11 19:09:01 +00:00
|
|
|
commit_message: "chore(lint): ${linter} fix"
|
2022-08-10 21:34:01 +00:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
neutral_check_on_warning: true
|
|
|
|
|
|
|
|
# Checks that the formatter runs successfully on all files
|
|
|
|
# In the future, we may have this fail PRs on unformatted code
|
|
|
|
- name: Format Check
|
2022-11-01 06:29:31 +00:00
|
|
|
run: pnpm run format --check
|
2022-08-10 21:34:01 +00:00
|
|
|
|
2023-04-27 03:39:15 +00:00
|
|
|
# Build primes out Turbo build cache and pnpm cache
|
2022-08-10 21:34:01 +00:00
|
|
|
build:
|
2022-11-11 19:09:01 +00:00
|
|
|
name: "Build: ${{ matrix.os }}"
|
2022-08-10 21:34:01 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2022-11-11 19:09:01 +00:00
|
|
|
timeout-minutes: 3
|
2022-08-10 21:34:01 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-04-27 03:39:15 +00:00
|
|
|
OS: [ubuntu-latest, windows-latest]
|
2023-01-06 17:01:54 +00:00
|
|
|
NODE_VERSION: [16]
|
2022-08-10 21:34:01 +00:00
|
|
|
fail-fast: true
|
|
|
|
steps:
|
2023-04-27 03:39:15 +00:00
|
|
|
# Disable crlf so all OS can share the same Turbo cache
|
|
|
|
# https://github.com/actions/checkout/issues/135
|
|
|
|
- name: Disable git crlf
|
|
|
|
run: git config --global core.autocrlf false
|
|
|
|
|
2022-08-10 21:34:01 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2022-10-28 18:36:50 +00:00
|
|
|
- name: Setup PNPM
|
2023-02-24 15:52:43 +00:00
|
|
|
uses: pnpm/action-setup@v2
|
2022-10-28 18:36:50 +00:00
|
|
|
|
|
|
|
- name: Setup node@${{ matrix.NODE_VERSION }}
|
|
|
|
uses: actions/setup-node@v3
|
2022-08-10 21:34:01 +00:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.NODE_VERSION }}
|
2022-11-11 19:09:01 +00:00
|
|
|
cache: "pnpm"
|
2022-10-28 18:36:50 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
2022-09-22 15:37:41 +00:00
|
|
|
|
2023-04-27 03:39:15 +00:00
|
|
|
# Only build in ubuntu as windows can share the build cache
|
2022-08-10 21:34:01 +00:00
|
|
|
- name: Build Packages
|
2023-04-27 03:39:15 +00:00
|
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
2022-08-10 21:34:01 +00:00
|
|
|
run: pnpm run build
|
|
|
|
|
|
|
|
test:
|
2022-11-11 19:09:01 +00:00
|
|
|
name: "Test: ${{ matrix.os }} (node@${{ matrix.NODE_VERSION }})"
|
2022-08-10 21:34:01 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2022-11-11 19:09:01 +00:00
|
|
|
timeout-minutes: 25
|
2022-08-10 21:34:01 +00:00
|
|
|
needs: build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-04-19 08:59:09 +00:00
|
|
|
OS: [ubuntu-latest]
|
2023-01-06 17:01:54 +00:00
|
|
|
NODE_VERSION: [16, 18]
|
2022-08-10 21:34:01 +00:00
|
|
|
include:
|
|
|
|
- os: macos-latest
|
2023-01-06 17:01:54 +00:00
|
|
|
NODE_VERSION: 16
|
2023-04-19 08:59:09 +00:00
|
|
|
- os: windows-latest
|
|
|
|
NODE_VERSION: 16
|
2022-08-10 21:34:01 +00:00
|
|
|
fail-fast: false
|
|
|
|
env:
|
|
|
|
NODE_VERSION: ${{ matrix.NODE_VERSION }}
|
|
|
|
steps:
|
2023-04-27 03:39:15 +00:00
|
|
|
- name: Disable git crlf
|
|
|
|
run: git config --global core.autocrlf false
|
|
|
|
|
2022-08-10 21:34:01 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2022-10-28 18:36:50 +00:00
|
|
|
- name: Setup PNPM
|
2023-02-24 15:52:43 +00:00
|
|
|
uses: pnpm/action-setup@v2
|
2022-10-28 18:36:50 +00:00
|
|
|
|
|
|
|
- name: Setup node@${{ matrix.NODE_VERSION }}
|
|
|
|
uses: actions/setup-node@v3
|
2022-08-10 21:34:01 +00:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.NODE_VERSION }}
|
2022-11-11 19:09:01 +00:00
|
|
|
cache: "pnpm"
|
2022-10-28 18:36:50 +00:00
|
|
|
|
|
|
|
- name: Use Deno
|
|
|
|
uses: denoland/setup-deno@v1
|
|
|
|
with:
|
2023-06-15 14:20:35 +00:00
|
|
|
deno-version: v1.34.1
|
2022-10-28 18:36:50 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
2022-08-10 21:34:01 +00:00
|
|
|
|
|
|
|
- name: Build Packages
|
|
|
|
run: pnpm run build
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: pnpm run test
|
|
|
|
|
|
|
|
e2e:
|
2022-11-11 19:09:01 +00:00
|
|
|
name: "Test (E2E): ${{ matrix.os }} (node@${{ matrix.NODE_VERSION }})"
|
2022-08-10 21:34:01 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2022-08-11 18:44:07 +00:00
|
|
|
timeout-minutes: 25
|
2022-08-10 21:34:01 +00:00
|
|
|
needs: build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
OS: [ubuntu-latest, windows-latest]
|
2023-01-06 17:01:54 +00:00
|
|
|
NODE_VERSION: [16]
|
2022-08-10 21:34:01 +00:00
|
|
|
fail-fast: false
|
|
|
|
env:
|
|
|
|
NODE_VERSION: ${{ matrix.NODE_VERSION }}
|
|
|
|
steps:
|
2023-04-27 03:39:15 +00:00
|
|
|
- name: Disable git crlf
|
|
|
|
run: git config --global core.autocrlf false
|
|
|
|
|
2022-08-10 21:34:01 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2022-10-28 18:36:50 +00:00
|
|
|
- name: Setup PNPM
|
2023-02-24 15:52:43 +00:00
|
|
|
uses: pnpm/action-setup@v2
|
2022-10-28 18:36:50 +00:00
|
|
|
|
|
|
|
- name: Setup node@${{ matrix.NODE_VERSION }}
|
|
|
|
uses: actions/setup-node@v3
|
2022-08-10 21:34:01 +00:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.NODE_VERSION }}
|
2022-11-11 19:09:01 +00:00
|
|
|
cache: "pnpm"
|
2022-10-28 18:36:50 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
2022-08-10 21:34:01 +00:00
|
|
|
|
|
|
|
- name: Build Packages
|
|
|
|
run: pnpm run build
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: pnpm run test:e2e
|
|
|
|
|
|
|
|
smoke:
|
2022-11-11 19:09:01 +00:00
|
|
|
name: "Test (Smoke): ${{ matrix.os }} (node@${{ matrix.NODE_VERSION }})"
|
2022-08-10 21:34:01 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2022-11-11 19:09:01 +00:00
|
|
|
timeout-minutes: 25
|
2022-08-10 21:34:01 +00:00
|
|
|
needs: build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
OS: [ubuntu-latest, windows-latest]
|
2023-01-06 17:01:54 +00:00
|
|
|
NODE_VERSION: [16]
|
2022-08-10 21:34:01 +00:00
|
|
|
env:
|
|
|
|
NODE_VERSION: ${{ matrix.NODE_VERSION }}
|
|
|
|
steps:
|
2023-04-27 03:39:15 +00:00
|
|
|
- name: Disable git crlf
|
|
|
|
run: git config --global core.autocrlf false
|
|
|
|
|
2022-08-10 21:34:01 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2022-10-28 18:36:50 +00:00
|
|
|
- name: Setup PNPM
|
2023-02-24 15:52:43 +00:00
|
|
|
uses: pnpm/action-setup@v2
|
2022-10-28 18:36:50 +00:00
|
|
|
|
|
|
|
- name: Setup node@${{ matrix.NODE_VERSION }}
|
|
|
|
uses: actions/setup-node@v3
|
2022-08-10 21:34:01 +00:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.NODE_VERSION }}
|
2022-11-11 19:09:01 +00:00
|
|
|
cache: "pnpm"
|
2022-08-10 21:34:01 +00:00
|
|
|
|
|
|
|
- name: Checkout docs
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: withastro/docs
|
|
|
|
path: smoke/docs
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2022-10-31 06:43:04 +00:00
|
|
|
run: pnpm install --no-frozen-lockfile
|
2022-08-10 21:34:01 +00:00
|
|
|
|
2023-04-27 03:39:15 +00:00
|
|
|
# Reset lockfile changes so that Turbo can reuse the old build cache
|
|
|
|
- name: Reset lockfile changes
|
|
|
|
run: git reset --hard
|
|
|
|
|
2022-08-10 21:34:01 +00:00
|
|
|
- name: Build Packages
|
|
|
|
run: pnpm run build
|
|
|
|
|
2023-04-27 13:23:29 +00:00
|
|
|
- name: Remove docs translations except for English and Korean
|
|
|
|
run: find smoke/docs/src/content/docs ! -name 'en' ! -name 'ko' -type d -mindepth 1 -maxdepth 1 -exec rm -rf {} +
|
|
|
|
|
2023-06-28 12:20:32 +00:00
|
|
|
- name: Check if docs changed
|
|
|
|
id: changes
|
|
|
|
uses: dorny/paths-filter@v2
|
|
|
|
with:
|
|
|
|
filters: |
|
|
|
|
docs:
|
|
|
|
- 'packages/integrations/*/README.md'
|
|
|
|
- 'packages/astro/src/@types/astro.ts'
|
|
|
|
- 'packages/astro/src/core/errors/errors-data.ts'
|
|
|
|
|
|
|
|
- name: Build autogenerated docs pages from current astro branch
|
|
|
|
if: ${{ steps.changes.outputs.docs == 'true' }}
|
|
|
|
run: cd smoke/docs && pnpm docgen && pnpm docgen:errors && pnpm docgen:integrations
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-06-28 16:13:51 +00:00
|
|
|
SOURCE_REPO: ${{ github.event.pull_request.head.repo.full_name || github.event.repository.full_name }}
|
2023-06-28 12:20:32 +00:00
|
|
|
SOURCE_BRANCH: ${{ github.head_ref || github.ref_name }}
|
|
|
|
|
2022-08-10 21:34:01 +00:00
|
|
|
- name: Test
|
2022-09-22 15:37:41 +00:00
|
|
|
run: pnpm run test:smoke
|
2023-01-02 13:31:51 +00:00
|
|
|
env:
|
2023-04-27 13:23:29 +00:00
|
|
|
SKIP_OG: true
|
|
|
|
PUBLIC_TWO_LANG: true
|