Skip to content

Add CI/CD pipeline to generate PDF #3

Add CI/CD pipeline to generate PDF

Add CI/CD pipeline to generate PDF #3

Workflow file for this run

name: PDF
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pdf:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: NPM Install
run: npm ci
- name: Export PDF
run: npm run pdf
- uses: actions/upload-artifact@v3
with:
name: pdf
path: index.pdf