Skip to content

test: check that docs deploy works #294

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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
65 changes: 9 additions & 56 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,48 +8,6 @@ on:
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
Expand All @@ -60,18 +18,13 @@ jobs:
- 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
run: pnpm run docs:build

- uses: ./.github/actions/setup-and-build
- name: Build extension
run: |
pnpm run extension:build
- name: Deploy documentation
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: tutorialkit-docs-page
workingDirectory: 'docs/tutorialkit.dev'
directory: dist
Loading