Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin from 5.59.8 to 6.4.0 #102

build(deps-dev): bump @typescript-eslint/eslint-plugin from 5.59.8 to 6.4.0

build(deps-dev): bump @typescript-eslint/eslint-plugin from 5.59.8 to 6.4.0 #102

Workflow file for this run

name: Test
on:
push:
branches:
- main
- renovate/**
- dependabot/**
pull_request:
types:
- opened
- synchronize
permissions:
contents: read
jobs:
test_matrix:
strategy:
matrix:
node-version:
- 18
- 19
runs-on: 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 }}
cache: npm
- run: npm clean-install
- run: npm run test
test:
runs-on: ubuntu-latest
needs: test_matrix
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
cache: npm
- run: npm clean-install
- run: npm audit signatures
- run: npm run lint