Last active
August 3, 2024 21:45
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Learn more: