chore(eslint): upgrade to eslint@9 #38
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: Dependencies Update π€ | |
# on: | |
# workflow_dispatch: | |
# schedule: | |
# - cron: '0 0 1 * *' | |
# jobs: | |
# update: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout code π€ | |
# uses: actions/checkout@v3 | |
# - name: Setup Node π€ | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: 'lts-alpine' | |
# - name: Setup pnpm π€ | |
# uses: pnpm/action-setup@v2 | |
# with: | |
# version: 8 | |
# run_install: false | |
# - name: Update dependencies π€ | |
# run: pnpm dlx npm-check-updates -u --target minor | |
# - name: Install dependencies π€ | |
# run: pnpm install --no-frozen-lockfile | |
# - name: Install dependencies π€ | |
# run: pnpm test:unit | |
# - name: Check for changes π€ | |
# id: check_changes | |
# run: | | |
# if [[ -n "$(git status --porcelain)" ]]; then | |
# echo "Changes found!" | |
# echo ::set-output name=has_changes::true | |
# else | |
# echo "No changes found!" | |
# echo ::set-output name=has_changes::false | |
# fi | |
# - name: Commit and Push changes π€ | |
# if: steps.check_changes.outputs.has_changes == 'true' | |
# run: | | |
# git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
# git config --global user.name "github-actions[bot]" | |
# git commit -am "chore: Dependencies Update π€" | |
# git push |