Skip to content

Ci - Add ChangeSet

Ci - Add ChangeSet #4

name: 🔗Pull Request Checks Workflow
on:
pull_request:
branches:
- main
jobs:
checks:
name: 🫸 Pull Request Checks
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 📦 Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: 🗂️ Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: 🛠️ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: current
cache: "pnpm"
- name: 🗄️ Setup pnpm cache
uses: actions/cache@v4
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: 🧩 Install dependencies
run: pnpm install --frozen-lockfile --prod=false
- name: 🧬 check code for errors (with Biome)
run: |
pnpm exec biome ci \
--formatter-enabled=false \
--linter-enabled=true \
--organize-imports-enabled=false \
--vcs-enabled=true \
--vcs-use-ignore-file=true \
--no-errors-on-unmatched \
--diagnostic-level=error \
.
- name: 🦋 Require changesets
run: pnpm exec changeset status --since=origin/main