Skip to content

set up test infrastructure #26

set up test infrastructure

set up test infrastructure #26

Workflow file for this run

name: Format Code
on:
pull_request:
merge_group:
push:
branches:
- main
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Prettier Action
uses: creyD/prettier_action@v4.3
with:
commit_message: "formatted code"
clean_node_folder: true
prettier_options: "--write packages/**/*.*"