Skip to content

Merge remote-tracking branch 'origin/erin/jjs' into marston/draft-box #3

Merge remote-tracking branch 'origin/erin/jjs' into marston/draft-box

Merge remote-tracking branch 'origin/erin/jjs' into marston/draft-box #3

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Deploy
on:
# Runs on pushes targeting the default branch
pull_request:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Allow one concurrent deployment
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
test-deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build-only