Skip to content

⬆️ Update typescript-eslint monorepo to v7.9.0 #1660

⬆️ Update typescript-eslint monorepo to v7.9.0

⬆️ Update typescript-eslint monorepo to v7.9.0 #1660

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-ci
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Checkout Repo
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- uses: pnpm/action-setup@v4.0.0
name: Install pnpm
id: pnpm-install
with:
version: 9
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install
run: pnpm install --frozen-lockfile
- name: Type Check
run: pnpm run type:check
- name: Test
run: pnpm run test
- name: Lint
run: pnpm run lint
- name: Build
run: pnpm run build
- name: e2e install
run: pnpm dlx playwright install --with-deps
- name: e2e
run: pnpm run e2e