Skip to content

Bump @typescript-eslint/parser from 6.8.0 to 6.18.0 #41

Bump @typescript-eslint/parser from 6.8.0 to 6.18.0

Bump @typescript-eslint/parser from 6.8.0 to 6.18.0 #41

Workflow file for this run

name: CI
on: pull_request
jobs:
formatting-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- run: yarn install
- name: Check linting
run: yarn lint
- name: Check formatting with Prettier
run: yarn prettier ./src ./electron --check
platform-build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- run: yarn install
- run: yarn build