Merge pull request #220 from embrace-io/update-compose-docs #715
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 - Docusaurus | |
on: | |
pull_request: | |
push: | |
branches: [ main ] | |
permissions: | |
contents: read | |
jobs: | |
docusaurus-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install Docusaurus | |
run: | | |
npm install | |
- name: Run Docusaurus build to generate HTML | |
run: | | |
npm run docusaurus build |