Skip to content

chore(deps): update dependency typescript-eslint to v8.14.0 #131

chore(deps): update dependency typescript-eslint to v8.14.0

chore(deps): update dependency typescript-eslint to v8.14.0 #131

Workflow file for this run

name: Test
on:
pull_request:
types:
- opened
- reopened
- synchronize
branches:
- main
env:
NODE_VERSION: 18
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: test-${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Node and install dependencies
uses: ./.github/actions/setup-node
with:
node-version: ${{ env.NODE_VERSION }}
os: ${{ runner.os }}
- name: Test
run: npm test
shell: bash