Skip to content

build(deps-dev): bump flatted from 3.3.1 to 3.4.2 in the npm_and_yarn group across 1 directory #732

build(deps-dev): bump flatted from 3.3.1 to 3.4.2 in the npm_and_yarn group across 1 directory

build(deps-dev): bump flatted from 3.3.1 to 3.4.2 in the npm_and_yarn group across 1 directory #732

Workflow file for this run

name: CI
on:
push:
branches:
- main
- next
- 'v*'
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: "${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
name: Lint and test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-node@v6
with:
check-latest: true
node-version-file: '.nvmrc'
- run: |
npm ci --ignore-scripts
npm run lint
npm test
automerge:
name: Automerge Dependabot PRs
if: >
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name == github.repository &&
github.event.pull_request.user.login == 'dependabot[bot]'
needs: test
permissions:
pull-requests: write
contents: write
runs-on: ubuntu-latest
steps:
- uses: fastify/github-action-merge-dependabot@1b2ed42db8f9d81a46bac83adedfc03eb5149dff # v3.11.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
target: major