Skip to content

Bump @typescript-eslint/parser from 6.13.2 to 6.15.0 #790

Bump @typescript-eslint/parser from 6.13.2 to 6.15.0

Bump @typescript-eslint/parser from 6.13.2 to 6.15.0 #790

Workflow file for this run

---
name: "ci"
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
permissions: "read-all"
jobs:
linux:
runs-on: "ubuntu-latest"
strategy:
matrix:
node-version: ["18.x", "19.x", "20.x", "21.x"]
steps:
- uses: "actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11"
- uses: "pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598"
with:
version: "latest"
- name: "Use Node.js ${{ matrix.node-version }}"
uses: "actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8"
with:
node-version: "${{ matrix.node-version }}"
cache: "pnpm"
- run: "make install"
- run: "make lint"
- run: "make test"
- run: "make build"