From 942fd370929d840d8f6d7e17b75acf496cfb2adb Mon Sep 17 00:00:00 2001 From: Nelson Trindade <48919500+nelsontr@users.noreply.github.com> Date: Mon, 30 Oct 2023 12:49:14 +0000 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 65234355..202be6ec 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,22 +3,20 @@ name: main on: [push, pull_request] jobs: - - Setup: + setup: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3.5.3 - - name: Setup Node uses: actions/setup-node@v3.7.0 with: node-version: '16' - Client-Dependencies: + client_dependencies: needs: - - Setup + - setup runs-on: ubuntu-latest steps: - name: Install client dependencies @@ -27,9 +25,9 @@ jobs: npm install cd .. - Client-Build: + client_build: needs: - - Client-Dependencies + - client_dependencies runs-on: ubuntu-latest steps: - name: Build client @@ -38,9 +36,9 @@ jobs: npm run build cd .. - Server-Dependencies: + server_dependencies: needs: - - Setup + - setup runs-on: ubuntu-latest steps: - name: Install server dependencies @@ -49,7 +47,7 @@ jobs: npm install cd .. - Testing: + testing: needs: - Client-Build runs-on: ubuntu-latest