Skip to content

chore: bump @typescript-eslint/parser from 7.7.0 to 7.12.0 #58

chore: bump @typescript-eslint/parser from 7.7.0 to 7.12.0

chore: bump @typescript-eslint/parser from 7.7.0 to 7.12.0 #58

Workflow file for this run

name: Basic CI
on:
push:
branches:
- 'main'
pull_request:
types: [opened, synchronize, reopened]
env:
HUSKY: 0
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'pnpm'
- name: Type Checking
run: |
pnpm install --frozen-lockfile
pnpm ci-type-check
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'pnpm'
- name: Linting
run: |
pnpm install --frozen-lockfile
pnpm ci-lint
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'pnpm'
- name: Unit Testing
run: |
pnpm install --frozen-lockfile
pnpm ci-test