Skip to content

Commit

Permalink
Check updates
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Oct 22, 2023
1 parent 6e841b1 commit ae9fdb4
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2

- name: Setup Node.js environment
uses: actions/setup-node@v2.1.2
uses: actions/setup-node@v3.1.

- name: Install Dependencies
run: npm i
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/check-updates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check Update
concurrency: check

on:
workflow_dispatch:
schedule:
# Automatically run on every Sunday
- cron: '0 0 * * 0'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]
with:
token: ${{ secrets.WORKFLOW_SECRET }}

- name: Check for Update
uses: saadmk11/[email protected]
with:
token: ${{ secrets.WORKFLOW_SECRET }}
5 changes: 5 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,10 @@ jobs:
- name: Run Tests
run: npm run test:ci

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- name: Run Build
run: npm run build

0 comments on commit ae9fdb4

Please sign in to comment.