diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 38721d4..fc89bff 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: '18' # You can adjust this to your project's Node.js version + node-version: '18' - name: Install pnpm uses: pnpm/action-setup@v2 @@ -25,4 +25,25 @@ jobs: run: pnpm install - name: Run tests - run: pnpm run test \ No newline at end of file + run: pnpm run test + typecheck: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '18' + + - name: Install pnpm + uses: pnpm/action-setup@v2 + with: + version: 9 + + - name: Install dependencies + run: pnpm install + + - name: Run typecheck + run: pnpm run typecheck \ No newline at end of file diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml deleted file mode 100644 index 8986eb3..0000000 --- a/.github/workflows/typecheck.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Run Tests on Pull Request - -on: - pull_request: - branches: [ main ] - -jobs: - test: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Use Node.js - uses: actions/setup-node@v3 - with: - node-version: '18' # You can adjust this to your project's Node.js version - - - name: Install pnpm - uses: pnpm/action-setup@v2 - with: - version: 9 - - - name: Install dependencies - run: pnpm install - - - name: Run typecheck - run: pnpm run typecheck \ No newline at end of file