Skip to content

Merge pull request #252 from aigbagbobila/security/181-ciphertext-saf… #70

Merge pull request #252 from aigbagbobila/security/181-ciphertext-saf…

Merge pull request #252 from aigbagbobila/security/181-ciphertext-saf… #70

Workflow file for this run

name: Frontend CI
on:
push:
paths:
- 'apps/web/**'
- '.github/workflows/frontend-ci.yml'
pull_request:
paths:
- 'apps/web/**'
- '.github/workflows/frontend-ci.yml'
jobs:
check:
name: Lint · Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm --filter web lint
- name: Test
run: pnpm --filter web test
- name: Build
run: pnpm --filter web build