From 8b294c294eea247b56c1d4870a7c9ae716576681 Mon Sep 17 00:00:00 2001 From: Daniel Gomes Pereira Date: Tue, 23 Jan 2024 12:00:31 +0000 Subject: [PATCH] Update blank.yml --- .github/workflows/blank.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index e115b6b..0125320 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -11,8 +11,8 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "build" - build: + # This is the job for merge requests + mergeRequest: # The type of runner that the job will run on runs-on: ubuntu-latest @@ -30,3 +30,10 @@ jobs: run: | echo I am running npm run test, echo wow, everything is passing so far. + + # This is the job for deploying + deploy: + runs-on: ubuntu-latest + steps: + - name: Install dependencies + run: echo I am installing stuff with npm install...