fix(deps): update all dependencies #185
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
| jobs: | |
| lint-prettier: | |
| env: | |
| TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| name: π¬ Lint Prettier | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 | |
| - uses: ./.github/actions/pnpm-install | |
| - run: pnpm turbo lint:prettier | |
| timeout-minutes: 15 | |
| lint-eslint: | |
| env: | |
| TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| name: π¬ Lint ESLint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 | |
| - uses: ./.github/actions/pnpm-install | |
| - run: pnpm turbo lint:eslint | |
| timeout-minutes: 15 | |
| lint-css: | |
| env: | |
| TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| name: π¬ Lint CSS | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 | |
| - uses: ./.github/actions/pnpm-install | |
| - run: pnpm lint:css | |
| timeout-minutes: 15 | |
| lint-types: | |
| env: | |
| TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| name: π¬ Lint Types | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 | |
| - uses: ./.github/actions/pnpm-install | |
| - run: pnpm lint:types | |
| timeout-minutes: 15 | |
| lint-md: | |
| env: | |
| TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| name: π¬ Lint MD | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 | |
| - uses: ./.github/actions/pnpm-install | |
| - run: pnpm lint:md | |
| timeout-minutes: 15 | |
| lint-package-json: | |
| env: | |
| TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| name: π¬ Lint Package JSON | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 | |
| - uses: ./.github/actions/pnpm-install | |
| - run: pnpm lint:package-json | |
| timeout-minutes: 15 | |
| lint-spelling: | |
| env: | |
| TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| name: π¬ Lint Spelling | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 | |
| - uses: ./.github/actions/pnpm-install | |
| - run: pnpm lint:spelling | |
| name: CI | |
| on: | |
| pull_request: ~ | |
| push: | |
| branches: | |
| - main |