diff options
author | 2023-06-01 18:04:34 -0700 | |
---|---|---|
committer | 2023-06-01 18:04:45 -0700 | |
commit | 03ffd1c732aaaa30b5481f197221ce96da559e63 (patch) | |
tree | 28e61112c9c0610d95f08b9067e5950e280f136f | |
parent | 3e84f18cc03a6bab898235ff2a9827b47a83aac9 (diff) | |
download | bun-03ffd1c732aaaa30b5481f197221ce96da559e63.tar.gz bun-03ffd1c732aaaa30b5481f197221ce96da559e63.tar.zst bun-03ffd1c732aaaa30b5481f197221ce96da559e63.zip |
Disable typecheck workflow for now
-rw-r--r-- | .github/workflows/bun-typecheck.yml | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/.github/workflows/bun-typecheck.yml b/.github/workflows/bun-typecheck.yml deleted file mode 100644 index 33f979a94..000000000 --- a/.github/workflows/bun-typecheck.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: typecheck -on: - push: - branches: [main] - paths: - - "packages/bun-types/**" - - "test/**" - - pull_request: - branches: - - main - paths: - - "packages/bun-types/**" - - "test/**" - -jobs: - tests: - name: check-tests - runs-on: ubuntu-latest - - steps: - - name: Checkout repo - uses: actions/checkout@v3 - - name: Install bun - uses: oven-sh/setup-bun@v1 - with: - bun-version: canary - - name: Install dependencies - run: bun install - - name: Install dependencies - run: bun install - working-directory: test - - name: Typecheck tests - run: bun run typecheck |