Skip to content

Bump @typescript-eslint/eslint-plugin from 7.0.2 to 7.1.1 #39

Bump @typescript-eslint/eslint-plugin from 7.0.2 to 7.1.1

Bump @typescript-eslint/eslint-plugin from 7.0.2 to 7.1.1 #39

Workflow file for this run

name: Main
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run typecheck
auto-merge:
if: github.event_name == 'pull_request' && github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
needs: build-and-test
env:
token: ${{ secrets.DEPENDABOT_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Check if secrets.DEPENDABOT_TOKEN is set
if: ${{ env.token == '' }}
run: exit 1
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: minor
command: squash and merge
# https://github.com/ahmadnassri/action-dependabot-auto-merge#token-scope
github-token: ${{ env.token }}