Add GitHub Actions workflow for weekly version bump using Yarn #2
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: Bump yarn versions | ||
Check failure on line 1 in .github/workflows/bump-versions.yml GitHub Actions / .github/workflows/bump-versions.ymlInvalid workflow file
|
||
on: | ||
schedule: | ||
- cron: '@weekly' | ||
jobs: | ||
bump-versions: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: yarn install --immutable | ||
- run: ./update.sh |