Merge pull request #10 from bdunderscore/pr-workflows

Enable workflows for PRs
This commit is contained in:
bd_ 2022-09-08 20:54:41 -07:00 committed by GitHub
commit c215f0e887
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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