Skip to content

Commit 3a4963b

Browse files
authored
add test job
1 parent f8d796c commit 3a4963b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

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

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

0 commit comments

Comments
 (0)