Skip to content

CSV imports

CSV imports #144

Workflow file for this run

name: Check App Code Formatting with Prettier
on:
pull_request:
branches:
- 'main'
jobs:
check-prettier:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Run Prettier
uses: creyD/[email protected]
with:
# Prettier CLI arguments
prettier_options: '--config ./app/.prettierrc --ignore-path ./app/.prettierignore --check ./app'