Skip to content

Update generated docs to align with v3.65.0 #1181

Update generated docs to align with v3.65.0

Update generated docs to align with v3.65.0 #1181

Workflow file for this run

name: Build
on:
push:
branches:
- '!production'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.x'
- run: npm install
- run: touch .env
- run: npm run build
env:
CI: true
static-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.x'
- run: npm install
- run: npm run eslint
- run: npm run prettier-check