From 9345e75b9ccd52b589bdd042de3ad4504f673f8b Mon Sep 17 00:00:00 2001 From: Christian Ditaputratama Date: Thu, 22 Aug 2024 00:50:34 +0700 Subject: [PATCH] chore(ci): Run golangci-lint after NodeJS ready --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 604ce7d..8cecbbb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,11 +25,6 @@ jobs: restore-keys: | ${{ runner.os }}-go- - - name: Run lint - uses: golangci/golangci-lint-action@v4 - with: - version: latest - - name: setup NodeJS uses: actions/setup-node@v4 with: @@ -44,6 +39,11 @@ jobs: restore-keys: | ${{ runner.os }}-node- + - name: Run lint + uses: golangci/golangci-lint-action@v4 + with: + version: latest + - name: Build UI run: make ui