[BREAKING/PROPOSAL] Generate unique string ids #74
Workflow file for this run
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22.x | |
| - name: Corepack | |
| run: corepack enable | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Lint | |
| run: yarn check:lint | |
| - name: Format | |
| run: yarn check:format | |
| - name: Types | |
| run: yarn check:types | |
| - name: Version | |
| run: | |
| git fetch origin main --depth 1 && ./scripts/if-no-version-change.sh | |
| yarn version check | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22.x | |
| - name: Corepack | |
| run: corepack enable | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Test | |
| run: yarn test |