Skip to content

Commit 38181e9

Browse files
committed
Added Test to the buid-test-deploy workflow
1 parent 25b37b6 commit 38181e9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build-test-deploy.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,17 @@ jobs:
1212
node-version: '20.x'
1313
- run: npm install
1414
- run: npm run build
15+
16+
test:
17+
needs: build
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: checkout repo
21+
uses: actions/checkout@v5
22+
- name: use node.js
23+
uses: actions/setup-node@v5
24+
with:
25+
node-version: '20.x'
26+
- run: npm install
27+
- run: npm test
28+

0 commit comments

Comments
 (0)