Skip to content

chore(deps-dev): bump @typescript-eslint/parser from 7.9.0 to 7.18.0 #79

chore(deps-dev): bump @typescript-eslint/parser from 7.9.0 to 7.18.0

chore(deps-dev): bump @typescript-eslint/parser from 7.9.0 to 7.18.0 #79

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- '.github/ISSUE_TEMPLATE/**'
- 'examples/**'
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Generate Grpc files
run: npm run generate
- name: Test
shell: bash
run: |
npm run test -- --run
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Format Check
shell: bash
run: |
npm run format-check
- name: Check Lint
shell: bash
run: |
npm run lint