chore(deps-dev): bump typescript-eslint from 7.1.1 to 8.0.0 #78
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |