Skip to content

build(deps-dev): bump eslint-plugin-import from 2.28.1 to 2.30.0 #963

build(deps-dev): bump eslint-plugin-import from 2.28.1 to 2.30.0

build(deps-dev): bump eslint-plugin-import from 2.28.1 to 2.30.0 #963

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: write
pull-requests: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout Repo
uses: actions/checkout@v4
- name: ⬢ Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '*'
cache: yarn
- name: 📦 Install Packages
run: yarn install --frozen-lockfile
- name: 🧪 Run Tests
run: yarn test
dependabot:
name: Dependabot auto-merge
needs: [validate]
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}