Skip to content
This repository has been archived by the owner on May 18, 2024. It is now read-only.

fix: Bump to ESM and update all deps (#1851) #293

fix: Bump to ESM and update all deps (#1851)

fix: Bump to ESM and update all deps (#1851) #293

Workflow file for this run

name: Cider Chores
on:
push:
branches:
- main
jobs:
prettier:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: Prettify code
run: npm run format:write
- name: Commit Prettier Code
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "chore: Prettified Code\n [ci skip]"
commit_user_name: "cider-chore[bot]"
commit_user_email: "cider-chore[bot]@users.noreply.github.com"