Skip to content

Frontend profile (Nextjs) #76

Frontend profile (Nextjs)

Frontend profile (Nextjs) #76

Workflow file for this run

name: Frontend CI
on:
push:
branches:
- master
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: latest
- name: Install pnpm
run: npm install -g pnpm
- name: install
run: pnpm install --frozen-lockfile
- name: format and lint
run: pnpm prettier --check . && pnpm lint
- name: build
run: pnpm build