Skip to content

Add a checklists index #12

Add a checklists index

Add a checklists index #12

Workflow file for this run

name: Pull Request Pipeline
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build-and-test:
name: Build and generate artifact
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Build the project
run: npm run build
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: site-preview-pr-${{ github.event.pull_request.number }}
path: ./build