This repository has been archived by the owner on Jan 4, 2025. It is now read-only.
refactor: improve password validation #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Prettier | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "^22" | |
cache: "npm" | |
- name: Install Prettier | |
run: npm ci | |
- name: Run Prettier | |
run: npm run format:check |