Skip to content

Commit a6f7f63

Browse files
authored
Merge pull request #9 from reactome/pipelines
Add Prettier CI workflow for formatting code
2 parents d4ad858 + e35665b commit a6f7f63

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/prettier.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: autofix.ci
2+
on:
3+
pull_request:
4+
push:
5+
permissions: {}
6+
jobs:
7+
prettier:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
12+
- run: |
13+
yarn
14+
yarn prettier . --write
15+
- uses: autofix-ci/action@v1
16+
with:
17+
commit-message: "Apply Prettier format"

0 commit comments

Comments
 (0)