Files
self/.github/workflows/app.yml
2025-06-04 11:37:32 +02:00

38 lines
778 B
YAML

name: App CI
on:
push:
paths:
- "common/**"
- "app/**"
- ".github/workflows/app.yml"
- ".github/actions/**"
jobs:
lint:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
uses: ./.github/actions/yarn-install
- name: Run linter
run: yarn lint
working-directory: ./app
- name: Run prettier
run: yarn fmt
working-directory: ./app
test:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
uses: ./.github/actions/yarn-install
- name: Build
run: yarn build:deps
working-directory: ./app
- name: Test
run: yarn test
working-directory: ./app