add prevent_overlapping_time_entries setting to organization #66
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: NPM Format Check | |
| on: [push] | |
| jobs: | |
| format-check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: "Checkout code" | |
| uses: actions/checkout@v4 | |
| - name: "Use Node.js" | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.x' | |
| - name: "Install npm dependencies" | |
| run: npm ci | |
| - name: "Check code formatting" | |
| run: npm run format:check |