Skip to content

Commit 5a89271

Browse files
committed
update workflows
1 parent 41a97f9 commit 5a89271

File tree

3 files changed

+18
-28
lines changed

3 files changed

+18
-28
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# dependabot.yml file with
2-
# customized npm configuration
3-
41
version: 2
52
updates:
63
# Keep npm dependencies up to date

.github/workflows/on-push-to-master.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/pr-open-workflows.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,21 @@ jobs:
3636
uses: Code-Hex/auto-milestone-binder@v1.0.1
3737
with:
3838
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

Comments
 (0)