Skip to content

Move JS out of data/ #79

Move JS out of data/

Move JS out of data/ #79

Workflow file for this run

name: Builder
on:
push:
branches-ignore:
- master
env:
FORCE_COLOR: 3
jobs:
build:
name: build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Lint source
run: pnpm lint
- name: Build app and generate PDF
run: pnpm predeploy
env:
PUBLIC_POSTHOG_PROJECT_API_KEY: ${{ vars.PUBLIC_POSTHOG_PROJECT_API_KEY }}