Skip to content

fix(internal): add workflows for lint and prettier #2

fix(internal): add workflows for lint and prettier

fix(internal): add workflows for lint and prettier #2

Workflow file for this run

name: Prettier
on: [pull_request]
jobs:
pretty:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Install Dependencies
run: npm ci
- name: Run Prettier
run: npm run pretty