Kl gmt 1516 layout typography revert #9162
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: Push | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup and Build | |
| uses: ./.github/actions/yarn | |
| - run: yarn format:verify | |
| shell: bash | |
| lint: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| command: ['lint', 'verify'] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup and Build | |
| uses: ./.github/actions/yarn | |
| - run: yarn build | |
| shell: bash | |
| - run: yarn ${{ matrix.command }} | |
| shell: bash | |
| verify-dependencies: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup and Build | |
| uses: ./.github/actions/yarn | |
| - run: yarn dedupe --check |