From 5d688ab65e76cad0ca77111f4c514d6c3426c273 Mon Sep 17 00:00:00 2001 From: agarciamears Date: Mon, 2 Dec 2024 16:56:47 -0600 Subject: [PATCH] Renamed workflow, added deploy job --- .github/workflows/test.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cba4341..3a3feb9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,4 +14,18 @@ jobs: run: npm ci - name: Run tests run: npm test - + deploy: + runs-on: ubuntu-latest + steps: + - name: Get code + uses: actions/checkout@v3 + - name: Install NodeJs + uses: actions/setup-node@v3 + with: + node-version: 18 + - name: Install dependencies + run: npm ci + - name: Build Project + run: npm run build + - name: Deploy Project + run: echo "Deploying..."