From 35ef1dc9086787a6297a6cd9f798d7747c5ae08a Mon Sep 17 00:00:00 2001 From: ThijmenGThN Date: Fri, 15 Dec 2023 21:44:33 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Removed=20LINT=20from=20Workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1e7fde3..b10250a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,17 +5,7 @@ on: branches: main jobs: - validate: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 20 - - run: npm ci - - run: npm run lint - prepare: - needs: validate + setup: runs-on: self-hosted steps: - uses: appleboy/ssh-action@master @@ -33,7 +23,7 @@ jobs: echo '${{ secrets.APP_ENV }}' > .env deploy: - needs: [validate, prepare] + needs: setup runs-on: self-hosted steps: - uses: appleboy/ssh-action@master