chore(deps): update ci-related dependencies updates to v6 (major) #3362
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: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| lint: | |
| name: Linting | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| check-latest: true | |
| cache: yarn | |
| - name: Install deps | |
| run: yarn install | |
| - name: Eslint check | |
| run: yarn lint | |
| - name: Type check | |
| run: yarn tsc | |
| test: | |
| name: Unit tests | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| check-latest: true | |
| cache: yarn | |
| - name: Install deps | |
| run: yarn install | |
| - name: Test | |
| run: yarn test | |
| - name: Codecov upload | |
| uses: codecov/codecov-action@v5.5.1 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| build: | |
| name: Building | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| check-latest: true | |
| cache: yarn | |
| - name: Install deps | |
| run: yarn install | |
| - name: Build | |
| run: yarn build |