feat(astro): add "Download lesson as zip" button #1224
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [18, 20, 22] | |
include: | |
- os: macos-latest | |
node_version: 20 | |
- os: windows-latest | |
node_version: 20.13.1 # 20.14.0 keeps causing a native `node::SetCppgcReference+18123` error in Vitest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-and-build | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Lint | |
run: pnpm lint | |
- name: Test | |
run: pnpm test | |
test-e2e: | |
name: Test E2E | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-and-build | |
- name: Install Playwright Dependencies | |
run: pnpm --filter=tutorialkit-e2e exec playwright install chromium --with-deps | |
- name: Test | |
run: pnpm test:e2e | |
docs: | |
name: Docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-and-build | |
- name: Build docs | |
run: | | |
pnpm run docs:build | |
pnpm run demo:build | |
extension: | |
name: VSCode Extension | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-and-build | |
- name: Build extension | |
run: | | |
pnpm run extension:build |