deps: bump tailwindcss from 3.4.17 to 4.1.12 #220
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependabot Auto-Merge | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.user.login == 'dependabot[bot]' # Ensure this only runs for Dependabot PRs | |
steps: | |
# Fetch Dependabot metadata | |
- name: Dependabot metadata | |
id: metadata | |
uses: dependabot/[email protected] | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
# Checkout code | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Set up Node.js | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "22" | |
# Install dependencies | |
- name: Install dependencies | |
run: npm ci | |
# Run tests | |
- name: Run tests | |
run: npm run build | |
# Enable auto-merge if conditions are met | |
- name: Enable auto-merge | |
if: success() | |
run: gh pr merge --auto --merge "${{ github.event.pull_request.html_url }}" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |