Skip to content

WARP Doc Site Updates #1477

WARP Doc Site Updates

WARP Doc Site Updates #1477

Workflow file for this run

name: PR Docs Test
on:
pull_request:
branches:
- develop
paths:
- website/**
jobs:
pr-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup NodeJS
uses: actions/setup-node@v2
with:
node-version: '16.14.2'
- name: Cache node_modules
uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
- name: Install and Build
run: yarn --cwd=website install && yarn --cwd=website build