Skip to content

fix(monorepo): removed unused github actions configuration (#20) #8

fix(monorepo): removed unused github actions configuration (#20)

fix(monorepo): removed unused github actions configuration (#20) #8

Workflow file for this run

name: code-quality
on:
push:
branches:
- 'main'
pull_request:
jobs:
lint:
name: 'ESLint'
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install
uses: ./.github/composite-actions/install
- name: Run ESLint check
run: pnpm run lint
type-check:
name: 'Type Check'
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install
uses: ./.github/composite-actions/install
- name: Run type checks
run: pnpm run type-check
test:
name: 'Unit Test'
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install
uses: ./.github/composite-actions/install
- name: Run unit test
run: pnpm run test