Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.7.1 to 7.18.0 #138

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.7.1 to 7.18.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.7.1 to 7.18.0 #138

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
env:
GH_REF: ${{ (github.event.pull_request.merged && github.event.pull_request.base.ref) || github.ref }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ env.GH_REF }}
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm i
- name: Run ESLint
run: pnpm lint
- name: Run Typecheck
run: pnpm tsc
- name: Run Tests
run: pnpm t