Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
furknyavuz committed Sep 25, 2021
1 parent dfe80b5 commit 54a0768
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/on-push-to-dependency-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: On Push to Master Workflows

on:
push:
branches:
- "workflow/dependency-update"

jobs:
continuous-integration:
name: "Npm Continuous Integration"
runs-on: ubuntu-latest

steps:
- name: Checkout Repo
uses: actions/checkout@v2

- name: Install Node
uses: actions/setup-node@v1
with:
node-version: 12

- name: NPM Install
run: npm install
- name: NPM Continous Integration
run: npm ci

0 comments on commit 54a0768

Please sign in to comment.