Bump node-fetch from 3.3.1 to 3.3.2 in /runner #81
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
name: Stars & Fork | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# so we can commit --amend and push -f | |
fetch-depth: 2 | |
- name: Git pull # Needed for sequential run | |
run: git pull | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: 18 | |
- name: Run apps | |
run: | | |
cd runner/ | |
npm ci | |
node stats.js | |
shell: bash | |
- name: Update README | |
run: | | |
cd runner/ | |
node writer.js | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "Update stars & Fork" | |
file_pattern: runner/stats.json README.md |