Skip to content

⬆️ Bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.19.0 #1616

⬆️ Bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.19.0

⬆️ Bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.19.0 #1616

Workflow file for this run

name: Node.js CI
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 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 }}
- name: Cache Node.js modules
uses: actions/cache@v4
with:
path: |
~/.yarn
**/node_modules
key: ${{ runner.OS }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: yarn --frozen-lockfile
- run: yarn run lint
- run: yarn test
env:
CI: true
- uses: codecov/codecov-action@v3