Skip to content

Commit

Permalink
Deployment job added
Browse files Browse the repository at this point in the history
  • Loading branch information
s-r-hama committed Jan 5, 2024
1 parent 33fac54 commit 2b47e6b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ...."




Expand Down

0 comments on commit 2b47e6b

Please sign in to comment.