We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 813a9d4 commit 5991d32Copy full SHA for 5991d32
.github/workflows/cicd.yml
@@ -5,7 +5,8 @@ on:
5
pull_request:
6
7
jobs:
8
- test:
+ ci:
9
+ name: Continuous Integration
10
runs-on: ubuntu-latest
11
strategy:
12
matrix:
@@ -18,10 +19,11 @@ jobs:
18
19
node-version: ${{ matrix.node-version }}
20
- run: npm ci
21
- run: npm test
- publish:
22
- name: Publish
+ - run: npm run lint
23
+ cd:
24
+ name: Continuous Deployment
25
- needs: test
26
+ needs: ci
27
if: startsWith(github.ref, 'refs/tags/v')
28
steps:
29
- name: Checkout the repository
0 commit comments