Update prettier-plugin-tailwindcss 0.1.10 → 0.1.13 (minor) #104
This file contains hidden or 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: Base Git Action | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| next: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Node | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: 18 | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn --immutable | |
| - name: Run Prettier | |
| run: yarn prettier:ci | |
| - name: Run ESLint | |
| run: yarn lint | |
| - name: Run TypeScript | |
| run: yarn typescript:ci | |
| - name: Run unit tests in CI environment | |
| run: yarn test:ci | |
| - name: Build the application | |
| run: yarn build |