Skip to content

chore(deps-dev): bump prettier from 3.3.3 to 3.4.2 #854

chore(deps-dev): bump prettier from 3.3.3 to 3.4.2

chore(deps-dev): bump prettier from 3.3.3 to 3.4.2 #854

Workflow file for this run

name: test
on:
push:
branches:
- main
- 'releases/v*'
pull_request:
jobs:
run-action:
name: Run action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
dependabot:
needs: [run-action]
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
steps:
- id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
- run: |
gh pr review --approve "$PR_URL"
gh pr merge --squash --auto "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}