Skip to content

Commit

Permalink
add autofix-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahsonder committed Jun 19, 2024
1 parent 9859d23 commit d6b053b
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 17 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/autofix-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: autofix.ci
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
push:
branches:
- master

jobs:
autofix:
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up node and cache packages
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install npm packages
run: npm ci
- name: Run prettier
run: npx prettier . --write
- name: Commit changes
uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc
34 changes: 17 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ on:
- master

jobs:
prettier:
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up node and cache packages
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install npm packages
run: npm ci
- name: Run prettier
run: npx prettier . --write
- name: Commit changes
uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc
# prettier:
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
# - name: Set up node and cache packages
# uses: actions/setup-node@v3
# with:
# node-version: 18
# cache: npm
# - name: Install npm packages
# run: npm ci
# - name: Run prettier
# run: npx prettier . --write
# - name: Commit changes
# uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc

jest:
if: github.event.pull_request.draft == false
runs-on: ubuntu-22.04
Expand Down

0 comments on commit d6b053b

Please sign in to comment.