Skip to content

chore(deps): update all non-major third-party dependencies #1657

chore(deps): update all non-major third-party dependencies

chore(deps): update all non-major third-party dependencies #1657

Workflow file for this run

name: 🤖 CI Pipeline
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
actions: write
contents: read
pull-requests: write
jobs:
lint:
name: ⬣ Lint
runs-on: ubuntu-latest
strategy:
matrix:
path: [apps/web]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- uses: ./.github/actions/pnpm-setup
with:
turbo: true
ghToken: ${{ secrets.GITHUB_TOKEN }}
turboToken: ${{ env.TURBO_TOKEN }}
- name: 🔬 Lint
working-directory: ${{ matrix.path }}
run: pnpm run lint
TSCoverage:
name: Typescript Coverage
runs-on: ubuntu-latest
strategy:
matrix:
path: [apps/web]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/pnpm-setup
- name: 🔎 Type check
working-directory: ${{ matrix.path }}
run: 'pnpm run ts-coverage'
vitest:
name: ⚡ Vitest
runs-on: ubuntu-latest
strategy:
matrix:
path: [apps/web]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/pnpm-setup
- name: ⚡ Run vitest
working-directory: "apps/web"
run: pnpm run test
- name: 'Report Coverage'
if: always()
uses: davelosert/vitest-coverage-report-action@v2
with:
working-directory: "apps/web"
build:
name: 🏗️ Build
runs-on: ubuntu-latest
strategy:
matrix:
path: [apps/web]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- uses: ./.github/actions/pnpm-setup
with:
turbo: true
ghToken: ${{ secrets.GITHUB_TOKEN }}
turboToken: ${{ env.TURBO_TOKEN }}
- name: 🏗️ Build
working-directory: ${{ matrix.path }}
run: pnpm run build