Skip to content

Feature/settings page #72

Feature/settings page

Feature/settings page #72

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [opened, synchronize]
branches:
- main
env:
NODE_VERSION: 20.x
jobs:
linting:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint Application
run: cd client && npm i -g pnpm@latest && pnpm i && pnpm lint
type-check:
name: Types
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check Application Types
run: cd client && npm i -g pnpm@latest && pnpm i && pnpm type-check
prettify:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check Application Types
run: cd client && npm i -g pnpm@latest && pnpm i && pnpm prettier:fix