Skip to content

Rename frontend folder to next-app #120

Rename frontend folder to next-app

Rename frontend folder to next-app #120

Workflow file for this run

name: Frontend CI
on:
push:
branches:
- master
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
defaults:
run:
working-directory: next-app
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