Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/guide-registry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Guide Registry

on:
pull_request: {}

permissions:
contents: read

jobs:
guide-registry:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 22

- name: Check guide registry
run: node scripts/check-registry.mjs
29 changes: 29 additions & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: PR Build

on:
pull_request: {}

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 22
cache: npm

- name: Install
run: npm ci

- name: Build
env:
# Prefer committed snapshot on PRs so builds do not depend on live S3.
CATALOGUE_URL: ""
run: npm run build
31 changes: 31 additions & 0 deletions .github/workflows/walkthrough-smoke.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Walkthrough Smoke

on:
schedule:
- cron: "0 6 * * *" # 06:00 UTC daily
workflow_dispatch: {}

permissions:
contents: read

concurrency:
group: walkthrough-smoke
cancel-in-progress: true

jobs:
smoke:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 22

- name: Smoke walkthrough URLs
env:
GA_MEASUREMENT_ID: G-6GP64SX615
SMOKE_CONCURRENCY: "4"
run: node scripts/smoke-walkthroughs.mjs
Loading