Skip to content

Commit

Permalink
check website build on linux is still happy
Browse files Browse the repository at this point in the history
Signed-off-by: Hannah Bollar <[email protected]>
  • Loading branch information
hanbollar committed Mar 8, 2024
1 parent 2411e2b commit 58a8f6b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/quick-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Build MRjs and confirm everything passes
name: check website build on linux

on:
workflow_dispatch:
push:
branches:
- '**' # This allows the workflow to run on all branches for the build job

permissions:
contents: write

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:

check-website-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Build the website
run: |
./action-build.sh

0 comments on commit 58a8f6b

Please sign in to comment.