diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..96889e4 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ +name: build +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + name: build + runs-on: ubuntu-latest + steps: + # ... + - uses: actions/checkout@v3 + - uses: oven-sh/setup-bun@v1 + + # run any `bun` or `bunx` command + - run: bun install + - run: bun run build