Skip to content

Auto-sync Develop to Main #111

Auto-sync Develop to Main

Auto-sync Develop to Main #111

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
pnpm:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
script: [lint, typecheck, build]
steps:
- name: Checkout Codebase
uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/install
- name: Run Script ${{ matrix.script }}
run: pnpm run ${{ matrix.script }}