From 64ab2aa185c2ffbcf5695a5ae535b563212725ee Mon Sep 17 00:00:00 2001 From: Christian Ditaputratama Date: Thu, 22 Aug 2024 00:57:50 +0700 Subject: [PATCH] chore(ci): Run `make ui` first before run golangci-lint --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8cecbbb..e0abc54 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,13 +39,13 @@ jobs: restore-keys: | ${{ runner.os }}-node- + - name: Build UI + run: make ui + - name: Run lint uses: golangci/golangci-lint-action@v4 with: version: latest - - name: Build UI - run: make ui - - name: Run test run: make test