Skip to content

chore(deps): update dependency @typescript-eslint/eslint-plugin to v7 #543

chore(deps): update dependency @typescript-eslint/eslint-plugin to v7

chore(deps): update dependency @typescript-eslint/eslint-plugin to v7 #543

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- '*.md'
pull_request:
branches:
- main
paths-ignore:
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 17.x, 18.x]
steps:
- uses: actions/checkout@v3
- run: corepack enable pnpm
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: install dependencies
run: pnpm install
- name: lint
run: pnpm run lint:ci
- name: build check (with type check)
run: pnpm build
- name: test
run: pnpm test:coverage
- uses: codecov/codecov-action@v3.1.1