Skip to content

fix: update deploy workflow to ignore markdown files and clean up wra… #9

fix: update deploy workflow to ignore markdown files and clean up wra…

fix: update deploy workflow to ignore markdown files and clean up wra… #9

Workflow file for this run

name: CI
on:
push:
branches: [main, "copilot/**"]
paths-ignore:
- "**/*.md"
pull_request:
branches: [main]
paths-ignore:
- "**/*.md"
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build