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 41a97f9 commit 5a89271Copy full SHA for 5a89271
.github/dependabot.yml
@@ -1,6 +1,3 @@
1
-# dependabot.yml file with
2
-# customized npm configuration
3
-
4
version: 2
5
updates:
6
# Keep npm dependencies up to date
.github/workflows/on-push-to-master.yml
.github/workflows/pr-open-workflows.yml
@@ -36,3 +36,21 @@ jobs:
36
uses: Code-Hex/auto-milestone-binder@v1.0.1
37
with:
38
github-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}
39
+
40
+ continuous-integration:
41
+ name: "Npm Continuous Integration"
42
+ runs-on: ubuntu-latest
43
44
+ steps:
45
+ - name: Checkout Repo
46
+ uses: actions/checkout@v2
47
48
+ - name: Install Node
49
+ uses: actions/setup-node@v1
50
+ with:
51
+ node-version: 12
52
53
+ - name: NPM Install
54
+ run: npm install
55
+ - name: NPM Continous Integration
56
+ run: npm ci
0 commit comments