Skip to content

chore(deps-dev): bump typescript-eslint from 8.22.0 to 8.31.0 #56

chore(deps-dev): bump typescript-eslint from 8.22.0 to 8.31.0

chore(deps-dev): bump typescript-eslint from 8.22.0 to 8.31.0 #56

Workflow file for this run

name: Pull Requests Quality Check
on:
workflow_call:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}