We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1cc001 commit dae2668Copy full SHA for dae2668
.github/workflows/build-test-deploy.yml
@@ -12,3 +12,15 @@ jobs:
12
node-version: '20.x'
13
- run: npm install
14
- run: npm run build
15
+ test:
16
+ needs: build
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: checkout repo
20
+ uses: actions/checkout@v4
21
+ - name: Use node.js
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: '20.x'
25
+ - run: npm install
26
+ - run: npm test
0 commit comments