Skip to content

Commit

Permalink
Renamed workflow, added deploy job
Browse files Browse the repository at this point in the history
  • Loading branch information
agarciamears committed Dec 2, 2024
1 parent c2a7738 commit 5d688ab
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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..."

0 comments on commit 5d688ab

Please sign in to comment.