Skip to content

Commit

Permalink
Update build-test-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JMN09 authored Jul 9, 2024
1 parent 99ca1d6 commit 5e795b3
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,17 @@ jobs:
node-version: '20.x'
- run: npm install
- run: npm run build


test:
needs: build
runs-on: ubuntu-latest

steps:
- name: checkout repo
uses: actions/checkout@v4
- name: use node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm install
- run: npm test

0 comments on commit 5e795b3

Please sign in to comment.