Files
Paco 198eb58eb2 Improve pipeline (#17)
* Adds CI workflow on pull requests

* Removes the upload artifact step from the build step
2025-10-23 18:12:59 +11:00

25 lines
442 B
YAML

name: CI
on:
pull_request:
branches:
- main
jobs:
build:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build website
run: yarn build