feat(instructions): name is the default search field
#435
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Fetch Sources | |
| uses: actions/checkout@v5 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setup Node.js 22.x | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 22.x | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn install --immutable --check-cache --check-resolutions | |
| - name: Check yarn dedupe | |
| run: yarn dedupe --check | |
| - name: Run prettier | |
| run: yarn run fmt:check | |
| - name: Run eslint | |
| run: yarn run lint:ts | |
| - name: Run stylelint | |
| run: yarn run lint:css | |
| - name: Build project | |
| run: yarn run build:all |