Skip to content

Bump @typescript-eslint/eslint-plugin from 6.7.0 to 7.0.0 #107

Bump @typescript-eslint/eslint-plugin from 6.7.0 to 7.0.0

Bump @typescript-eslint/eslint-plugin from 6.7.0 to 7.0.0 #107

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- "!dependabot/**"
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
permissions:
contents: read
jobs:
run:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [18]
os: [ubuntu-latest]
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm test