mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
Remove test run workflow, for now
This commit is contained in:
43
.github/workflows/bun-test.yml
vendored
43
.github/workflows/bun-test.yml
vendored
@@ -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
|
||||
Reference in New Issue
Block a user