From a365fa326d8bc7af2794686b2a2de4e7f3951775 Mon Sep 17 00:00:00 2001 From: Ava Gaiety W Date: Thu, 16 Mar 2023 00:43:33 -0500 Subject: [PATCH] remove fake deploy script, CI runs lint stage --- .gitlab-ci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b45ed18..ceb650e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -44,10 +44,6 @@ unit-test-job: # This job runs in the test stage. lint-test-job: # This job also runs in the test stage. stage: test # It can run at the same time as unit-test-job (in parallel). script: - - echo "Linting code... TBD" - -deploy-job: # This job runs in the deploy stage. - stage: deploy # It only runs when *both* jobs in the test stage complete successfully. - environment: production - script: - - echo "Deploying application... TBD lol" + - echo "Linting code..." + - npm i + - npm lint