feat(cli): add tsconfig
file detection based on the framework
#385
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- dev | |
paths: | |
- 'packages/**' | |
pull_request: | |
branches: | |
- dev | |
paths: | |
- 'packages/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup (Install Node & pnpm) | |
uses: ./.github/actions/setup | |
- name: Install dependencies | |
run: pnpm i --frozen-lockfile | |
- name: Test | |
run: pnpm test |