Skip to content

ci: add workflow file for action to check types, lint, format #7

ci: add workflow file for action to check types, lint, format

ci: add workflow file for action to check types, lint, format #7

Workflow file for this run

name: CI - Frontend
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Format, Lint, Types
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: pnpm/action-setup@v4
with:
version: 8
- name: Check Format
run: pnpm format:check
working-directory: ./frontend
- name: Check Lint
run: pnpm lint
working-directory: ./frontend
- name: Check Types
run: pnpm types
working-directory: ./frontend