diff --git a/.github/workflows/workflows.yml b/.github/workflows/workflows.yml index 65f24f6..b03c668 100644 --- a/.github/workflows/workflows.yml +++ b/.github/workflows/workflows.yml @@ -16,6 +16,26 @@ jobs: run: npm ci - name: Run tests run: npm test + deploy: + runs-on: ubuntu-latest + steps: + - name: test workflow + run: echo "Testing workflow" + - name: Get code + uses: actions/checkout@v4 + - name: install NodeJs + uses: actions/setup-node@v4 + with: + node-version: 18 + - name: install dependencies + run: npm ci + - name: Run tests + run: npm test + - name: Build Project + run: npm run build + - name: deploy + run: echo "Deploying ...." +