Skip to content

ci(sendsay-docs): fix autofix #6

ci(sendsay-docs): fix autofix

ci(sendsay-docs): fix autofix #6

Workflow file for this run

name: Autofix
on:
push
jobs:
autofix:
runs-on: ubuntu-latest
if: ${{ github.repository != 'sendsay-ru/sendsay-docs' }}
env:
FORCE_COLOR: 1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup git
run: |
git config --global user.email "[email protected]"
git config --global user.name "sendsay-cat"
- name: Setup ssh-key
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SENDSAY_CAT_KEY }}
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install packages
run: yarn install --frozen-lockfile
- name: Autofix
run: yarn fix
- name: Commit
run: |
git add .
git commit -m "autofix"
git push origin