We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e710c81 commit 7ef4c66Copy full SHA for 7ef4c66
3 files changed
.circleci/config.yml
.github/CODEOWNERS
@@ -0,0 +1 @@
1
+@godaddy/javascript
.github/workflows/cicd.yaml
@@ -0,0 +1,35 @@
+name: 'CICD'
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ node: ['12', '14', '16']
17
+ steps:
18
+ - name: Checkout code
19
+ uses: actions/checkout@v2
20
+ with:
21
+ fetch-depth: 0
22
+ - name: Setup Node.js
23
+ uses: actions/setup-node@v2
24
25
+ node-version: ${{ matrix.node }}
26
+ cache: 'npm'
27
+ cache-dependency-path: '**/package-lock.json'
28
+ - name: Install dependencies
29
+ run: npm ci
30
+ - name: Test
31
+ run: npm test
32
+ - name: Lint
33
+ run: npm run lint
34
+ - name: Coverage
35
+ run: npm run coverage
0 commit comments