Enable workflows for PRs

This commit is contained in:
bd_ 2022-09-08 20:52:06 -07:00
parent 1fb8785670
commit 442f965696
2 changed files with 21 additions and 0 deletions

View File

@ -2,6 +2,7 @@ name: Build Release
on:
workflow_dispatch:
pull_request:
push:
branches:
- main

20
.github/workflows/build-test-docs.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Test documentation
on:
pull_request:
jobs:
build-listing:
name: build-listing
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/checkout@v3 # check out this repo
- name: Build docs
run: |
cd docs
npm install
npm run build