-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e205f7d
commit 7cdd2c2
Showing
5 changed files
with
38 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Cron Dependency Checker Workflow | ||
|
||
on: | ||
schedule: | ||
- cron: '0 4 * * 1' | ||
|
||
jobs: | ||
cron-dependency-checker: | ||
name: 'Cron Dependency Checker' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v2 | ||
with: | ||
token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }} | ||
|
||
- name: Install Node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
|
||
- name: NPM Install | ||
run: npm i | ||
- name: Npm Outdated | ||
run: npm run outdated | ||
- name: Build | ||
run: npm run buildProd | ||
|
||
- name: Git Commit and Push | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Furkan Yavuz" | ||
git commit -am "Workflow/dependency check" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters