Skip to content

Update to better CSV and UI #5

Update to better CSV and UI

Update to better CSV and UI #5

Workflow file for this run

name: 'Check Prettier Formatting'
on: pull_request
jobs:
prettier-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'pnpm'
- name: Install pnpm
run: |
curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm
echo "$(npm bin -g)" >> $GITHUB_PATH
- name: Install Prettier
run: pnpm add prettier
- name: Check formatting
run: npx prettier --check .