Skip to content

Bump follow-redirects from 1.15.2 to 1.15.4 in /site #383

Bump follow-redirects from 1.15.2 to 1.15.4 in /site

Bump follow-redirects from 1.15.2 to 1.15.4 in /site #383

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Site Tests
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: [main]
paths: ['site/**', '.github/workflows/tests-site.yml']
pull_request:
branches: [main]
paths: ['site/**', '.github/workflows/tests-site.yml']
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repo
uses: actions/checkout@v3
# Node is required for npm
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
# Install and build Docusaurus website
- name: Build Docusaurus website
run: |
yarn
cd site
yarn
yarn build
- name: Returns true if the site has been generated
run: |
[ -d "./site/docs/modules" ]