Skip to content

Bump eslint-plugin-astro from 0.34.0 to 1.2.0 (#315) #124

Bump eslint-plugin-astro from 0.34.0 to 1.2.0 (#315)

Bump eslint-plugin-astro from 0.34.0 to 1.2.0 (#315) #124

Workflow file for this run

name: Prettier PR
on:
push:
branches:
- '*'
workflow_dispatch:
jobs:
fix-peer-dependencies:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn
- name: Yarn upgrade
run: yarn upgrade
- name: Add prettier
run: yarn add --dev prettier
- name: Prettier
run: yarn prettier . --write
- name: Git setup
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
- name: Commit changes
run: |
git add .
git commit -m "Fix conflicting peer dependencies" || true
git pull || true
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
commit-message: "Prettier"
title: "Prettier"
body: "Prettier"
branch-suffix: timestamp