Fetch Latest packages #360
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: Fetch Latest packages | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
npm-packages: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: api/npm-packages | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.16.1" | |
- name: Install Yarn | |
run: | | |
corepack enable | |
corepack prepare yarn@stable --activate | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Run | |
run: yarn start | |
- name: Commit and push if changed | |
run: |- | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
git add packages.json | |
git commit -m "Update packages.json" || true | |
git push |