-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
36 lines (31 loc) Β· 880 Bytes
/
e2e-docusaurus-workflow.yml
File metadata and controls
36 lines (31 loc) Β· 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
on:
schedule:
- cron: '0 */4 * * *'
push:
branches:
- master
pull_request:
paths:
- .github/actions/prepare/action.yml
- .github/workflows/e2e-docusaurus-workflow.yml
- scripts/e2e-setup-ci.sh
name: 'E2E Docusaurus'
jobs:
chore:
name: 'Validating Docusaurus'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare
- name: 'Running the integration test'
run: |
source scripts/e2e-setup-ci.sh
yarn dlx create-docusaurus@latest my-website classic --javascript && cd my-website
yarn build
- name: 'Running the TypeScript integration test'
run: |
source scripts/e2e-setup-ci.sh
yarn dlx create-docusaurus@latest my-website-ts classic --typescript && cd my-website-ts
yarn build
if: |
success() || failure()