This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
🚸 Change the default value for the timepicker in th… #39
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: Lint | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
env: | |
PUBLIC_API_URL: https://dlool-backend.onrender.com | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: 'pnpm' | |
- run: pnpm install | |
name: Install dependencies | |
- run: pnpm lint | |
name: Lint |