Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jellydn authored Sep 23, 2023
1 parent d6bef5b commit 9bc65e1
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Run StepCI with Bun
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
api_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Step CI Action
uses: stepci/stepci@main
with:
workflow: "workflow.yml"
e2e_test:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v3
- id: setup-bun
name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- id: install-bun
name: Bun Install
run: |
bun install
- id: test
name: E2E Test
run: |
bun run test:e2e

0 comments on commit 9bc65e1

Please sign in to comment.