This repository was archived by the owner on Feb 9, 2026. It is now read-only.
chore(deps-dev): bump eslint-config-prettier from 10.1.5 to 10.1.8 #1199
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: Continuous Integration | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Node v22 | |
| uses: actions/setup-node@v4.4.0 | |
| with: | |
| node-version: 22 | |
| cache: yarn | |
| cache-dependency-path: yarn.lock | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Run ESlint | |
| run: yarn lint | |
| - name: Run Build | |
| run: yarn build | |
| - name: Run Tests | |
| run: yarn test:ci |