Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

build(deps-dev): bump @typescript-eslint/parser from 5.50.0 to 5.59.1 #786

build(deps-dev): bump @typescript-eslint/parser from 5.50.0 to 5.59.1

build(deps-dev): bump @typescript-eslint/parser from 5.50.0 to 5.59.1 #786

Workflow file for this run

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