refactor: use CSS classes for layout paddings instead of TS variables #158
Workflow file for this run
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: CI Style | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [opened, synchronize] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup up Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20.11.1 | |
| - name: Setup up Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.1.30 | |
| - name: Install dependencies | |
| run: bun i | |
| - name: Format the code | |
| run: bun format | |
| - name: Lint the code | |
| run: bun lint |