Remove test run workflow, for now

This commit is contained in:
Ashcon Partovi
2023-02-08 16:11:24 -08:00
committed by GitHub
parent 6fdbb25f9a
commit ee8ccca605

View File

@@ -1,43 +0,0 @@
name: bun-test
on:
push:
branches:
- main
- "test/*"
paths:
- "src/**/*"
- "test/**/*"
pull_request:
branches:
- main
- "test/*"
paths:
- "src/**/*"
- "test/**/*"
workflow_dispatch:
inputs:
release:
type: string
default: canary
jobs:
bun:
name: Bun
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/bun-test
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v3
- id: setup-bun
name: Setup Bun
uses: oven-sh/setup-bun@v0.1.8
with:
bun-version: ${{ github.event.inputs.release || 'canary' }}
- id: setup-dependencies
name: Setup Dependencies
run: bun install
- id: test
name: Test
run: bun run test