Skip to content

Release with email tweaks #38

Release with email tweaks

Release with email tweaks #38

Workflow file for this run

name: Web Lint
on:
pull_request:
branches: [master]
paths:
- 'apps/web/**'
jobs:
web-checks:
name: Web Lint & Format
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/web
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
cache-dependency-path: apps/web/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
- name: Run ESLint
run: pnpm eslint . --ext .js,.jsx,.ts,.tsx
- name: Run Prettier
run: pnpm prettier . --check