Skip to content

build(deps-dev): bump @typescript-eslint/parser from 7.7.0 to 7.8.0 #1485

build(deps-dev): bump @typescript-eslint/parser from 7.7.0 to 7.8.0

build(deps-dev): bump @typescript-eslint/parser from 7.7.0 to 7.8.0 #1485

Workflow file for this run

name: "build-test"
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
jobs:
test-os: # make sure build/ci work properly
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest]
node-version: [16.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: node -v
- run: npm install
- run: npm run test-js
- run: npm run test-ts
test-node-versions: # make sure build/ci work properly
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x, 16.x, 14.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: node -v
- run: npm install
- run: npm run test-js
- run: npm run test-ts