From 0eb0439b7eb54b184881247df8909302c3507ca2 Mon Sep 17 00:00:00 2001 From: Harley Alexander Zapata Hernandez Date: Mon, 3 Jun 2024 05:26:25 -0500 Subject: [PATCH] Add github workflow --- .github/workflows/bunts.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/bunts.yml b/.github/workflows/bunts.yml index 73c3af1..7c824e7 100644 --- a/.github/workflows/bunts.yml +++ b/.github/workflows/bunts.yml @@ -11,19 +11,16 @@ jobs: node-version: [21.x] steps: - uses: actions/checkout@v1 - - - name: Set up Bun - uses: oven-sh/setup-bun@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 with: - bun-version: [1.x] - + node-version: ${{ matrix.node-version }} - name: Install dependencies run: | bun install - - - name: Run lint - run: | - bun lint +# - name: Run lint +# run: | +# bun lint - name: Run build run: |