Skip to content

v1.16.1

v1.16.1 #113

Workflow file for this run

# 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