This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
feat(forms): add required fields #8
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: Formatting, Linting, and Type Checking | |
on: [push, pull_request] | |
jobs: | |
style: | |
name: Prettier and ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: "npm" | |
- name: Install all dependencies | |
run: npm ci | |
- name: Run Prettier | |
run: npm run format:check | |
- name: Run TypeScript checks | |
run: npm run tsc |