Skip to content

chore(deps): update actions/setup-node action to v4 (#28) #9

chore(deps): update actions/setup-node action to v4 (#28)

chore(deps): update actions/setup-node action to v4 (#28) #9

---
name: Prettier
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read # for checkout
jobs:
run:
name: Can the code be formatted? 🤔
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npx prettier --write .
- run: git restore .github/workflows
- uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2
id: generate-token
with:
app_id: ${{ secrets.ECOSCRIPT_APP_ID }}
private_key: ${{ secrets.ECOSCRIPT_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5
with:
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
body: I ran `npx prettier --write .` 🧑‍💻
branch: actions/format
commit-message: "chore(format): 🤖 ✨"
labels: 🤖 bot
title: "chore(format): 🤖 ✨"
token: ${{ steps.generate-token.outputs.token }}