From ff4f277cfea832e672df628c0114f0945642805f Mon Sep 17 00:00:00 2001 From: Kacper Kula Date: Fri, 31 Jan 2025 13:15:09 +0000 Subject: [PATCH] chore: combining test and typecheck configurations --- .github/workflows/test.yml | 25 +++++++++++++++++++++++-- .github/workflows/typecheck.yml | 28 ---------------------------- 2 files changed, 23 insertions(+), 30 deletions(-) delete mode 100644 .github/workflows/typecheck.yml 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