feat: add new strategies & icons, remove deprecated strategies #350
This file contains hidden or 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: Check PR | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| env: | |
| HUSKY: 0 | |
| CI: true | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Latest Corepack | |
| run: | | |
| echo "Before: corepack version => $(corepack --version || echo 'not installed')" | |
| npm install -g corepack@latest | |
| echo "After : corepack version => $(corepack --version)" | |
| corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: "yarn" | |
| node-version-file: ".nvmrc" | |
| - name: Perform checks | |
| run: | | |
| yarn install --immutable | |
| yarn typecheck:ci | |
| yarn lint:ci | |
| yarn prettier:ci |