From 1cf1411eb3fa092c52b04659161ad48400a0db60 Mon Sep 17 00:00:00 2001 From: briskt <3172830+briskt@users.noreply.github.com> Date: Tue, 12 Nov 2024 13:08:37 +0800 Subject: [PATCH] require lint check --- .github/workflows/test-deploy-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-deploy-publish.yml b/.github/workflows/test-deploy-publish.yml index 11eb198..6ee1251 100644 --- a/.github/workflows/test-deploy-publish.yml +++ b/.github/workflows/test-deploy-publish.yml @@ -44,7 +44,7 @@ jobs: deploy: name: Deploy to AWS Lambda - needs: tests + needs: [ 'tests', 'lint' ] if: github.ref_name == 'main' || github.ref_name == 'develop' runs-on: ubuntu-latest strategy: @@ -71,7 +71,7 @@ jobs: build-and-publish: name: Build and Publish - needs: tests + needs: [ 'tests', 'lint' ] runs-on: ubuntu-latest steps: - name: Checkout code