From 1d47039a43256a06c6204eed290d89417427472f Mon Sep 17 00:00:00 2001 From: kartojal Date: Wed, 6 Dec 2023 12:35:51 +0100 Subject: [PATCH] chore: add more ci steps: install, lint check, build --- .github/workflows/actions.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 2bbaaaf..3c7b1d6 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -4,9 +4,12 @@ jobs: Lint: runs-on: ubuntu-latest steps: - - name: Check out repository code - uses: actions/checkout@v4 - - name: Setup Biome CLI - uses: biomejs/setup-biome@v1 - - name: Run linter + - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v1 + - uses: biomejs/setup-biome@v1 + - name: Install dependencies + run: bun install + - name: Lint check run: biome ci . + - name: Build + run: bun run build