Skip to content

⬆️ Bump eslint-plugin-import from 2.29.1 to 2.31.0 #4360

⬆️ Bump eslint-plugin-import from 2.29.1 to 2.31.0

⬆️ Bump eslint-plugin-import from 2.29.1 to 2.31.0 #4360

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
cache: "pnpm"
node-version-file: '.node-version'
- name: Install dependencies πŸ“¦
run: pnpm install
- name: Lint 🎨
run: pnpm run test:lint
- name: TypeScript check 🏷
run: pnpm run tscheck
- name: Tests βœ…
run: pnpm run test:unit
- name: Upload Coverage πŸ“ˆ
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}