Coderefs - Bump to latest (#2185) #1
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: CI | |
on: | |
push: | |
branches: main | |
paths-ignore: | |
- "packages/**" | |
- "yarn.lock" | |
- ".eslintrc" | |
- ".eslintignore" | |
- ".prettierignore" | |
pull_request: | |
paths-ignore: | |
- "packages/**" | |
- "yarn.lock" | |
- ".eslintrc" | |
- ".eslintignore" | |
- ".prettierignore" | |
# If nothing of importance changed, the normal CI workflow is skipped | |
# Skipped steps do not count as successful, which will block the PR from being merged | |
# This is a dummy workflow for those cases so it gets marked as successful in GitHub | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No changes, skipping"' |