Skip to content

chore: add prettier check #2

chore: add prettier check

chore: add prettier check #2

Workflow file for this run

name: Test workflow
on: [push, pull_request]
jobs:
prettier_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install Dependencies
run: npm ci
- name: Run prettier
run: npm run prettier:check