data: release all Pokemon for GO except newest mythicals and legendar… #52
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: Quality Checks | |
env: | |
NODE_VERSION: 20.16.0 | |
PNPM_VERSION: 9.7.0 | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: checkCodeQuality-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
checkCodeQuality: | |
name: "Quality Checks" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Setup project" | |
uses: ./.github/actions/setup-project | |
- name: "Check code quality" | |
uses: ./.github/actions/check-quality |