Skip to content

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

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

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

Workflow file for this run

name: CI - Frontend

Check failure on line 1 in .github/workflows/ci-frontend.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-frontend.yml

Invalid workflow file

`concurrency` is not a valid event name
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
defaults:
run:
working-directory: ./frontend
steps:
- name: Check Format
run: pnpm format:check
- name: Check Lint
run: pnpm lint
- name: Check Types
run: pnpm types