Skip to content

Update deploy.yml to only run manually #13

Update deploy.yml to only run manually

Update deploy.yml to only run manually #13

Workflow file for this run

name: Build
on: [push, pull_request]
concurrency:
group: build-${{ github.event.pull_request.number}}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Build documentation
run: npm run build