From a33d957dc62120e078d3e9383250904fbc39b59b Mon Sep 17 00:00:00 2001 From: Dale Seo Date: Tue, 10 Dec 2024 22:09:25 -0500 Subject: [PATCH] ci: integration workflow --- .github/workflows/integration.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/integration.yml diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml new file mode 100644 index 0000000..c2e1c87 --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,15 @@ +name: Integration 🔄 + +on: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v2 + - run: bun install + - run: bun run lint + - run: bun run test run + - run: bun run build