Skip to content

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

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

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

Workflow file for this run

name: "test-terminate"
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
jobs:
test-os: # make sure build/ci work properly
# runs-on: ubuntu-latest
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: node workerTerminate.js
test-node-versions: # make sure build/ci work properly
# runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x, 16.x, 18.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: node workerTerminate.js