Skip to content

Instantly share code, notes, and snippets.

@ChaiyoKung
Last active August 3, 2024 21:45
Show Gist options
  • Save ChaiyoKung/a27e71b2137585fb21b302fb4e9f2d9e to your computer and use it in GitHub Desktop.
Save ChaiyoKung/a27e71b2137585fb21b302fb4e9f2d9e to your computer and use it in GitHub Desktop.
This GitHub Action workflow is triggered by a push event to the repository. It sets up and runs a Node.js application using Bun.
name: Bun Run
on: push
jobs:
bun-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install --frozen-lockfile
- run: bun index.ts
@ChaiyoKung
Copy link
Author

ChaiyoKung commented Aug 3, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment