Skip to content

Merge pull request #18 from heroui-inc/develop #112

Merge pull request #18 from heroui-inc/develop

Merge pull request #18 from heroui-inc/develop #112

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 }}