Skip to content

Bump @typescript-eslint/eslint-plugin from 8.18.2 to 8.20.0 #40

Bump @typescript-eslint/eslint-plugin from 8.18.2 to 8.20.0

Bump @typescript-eslint/eslint-plugin from 8.18.2 to 8.20.0 #40

Workflow file for this run

name: JS Bot Test
on:
pull_request:
push:
branches-ignore:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: latest
cache: "npm"
- name: Build & Test
run: |
npm ci
npm run build
npm run test