v1.16.1 #113
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
# HMS Networks; Americas | |
# Test Docusaurus Deploy Action for Maven-based Ewon ETK Projects | |
# Version: 3.0.0 | |
# Date: February 8, 2024 | |
# | |
# This action is configured to automatically run when a pull request | |
# is opened for the `main` branch. | |
name: Test Docusaurus Build | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
doc-test-deploy: | |
name: Test Docusaurus Build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: web-docs | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: yarn | |
cache-dependency-path: web-docs/yarn.lock | |
- name: Install Dependencies | |
working-directory: ./web-docs | |
run: yarn install --frozen-lockfile | |
- name: Test Build Website | |
working-directory: ./web-docs | |
run: yarn build |