Skip to content

chore(deps): bump fastify/github-action-merge-dependabot from 3.11.1 to 3.11.2 #240

chore(deps): bump fastify/github-action-merge-dependabot from 3.11.1 to 3.11.2

chore(deps): bump fastify/github-action-merge-dependabot from 3.11.1 to 3.11.2 #240

Workflow file for this run

on:
push:
branches:
- main
- next
- 'v*'
pull_request:
paths-ignore:
- LICENSE
- '*.md'
name: CI
jobs:
lint:
permissions:
contents: read
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install Node.js
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: v22.x
cache: 'npm'
cache-dependency-path: package.json
- name: Install dependencies
run: npm install
- name: Check linting
run: npm run lint:ci
tests:
permissions:
contents: read
name: Tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [20.x, 22.x, 24.x]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: package.json
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm run test:ci
automerge:
if: >
github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]'
needs:
- tests
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Merge Dependabot PR
uses: fastify/github-action-merge-dependabot@1b2ed42db8f9d81a46bac83adedfc03eb5149dff # v3.11.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}