File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 66 pull_request :
77 branches : [ main ]
88
9+ # Explicitly declare permissions (security best practice)
10+ permissions :
11+ contents : read
12+ pull-requests : read
13+
14+ # Prevent multiple workflow runs from racing
15+ concurrency :
16+ group : ${{ github.workflow }}-${{ github.ref }}
17+ cancel-in-progress : true
18+
919jobs :
1020 lint :
1121 runs-on : ubuntu-latest
2030
2131 - name : Install dependencies
2232 run : npm ci
33+ continue-on-error : false
2334
2435 - name : Run ESLint
2536 run : npm run lint
37+ continue-on-error : false
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { clsx } from 'clsx';
99
1010const COMPONENT_NAME = 'Text' ;
1111
12- const TAGS = [ 'div' , 'span' , 'p' , 'label' ]
12+ const TAGS = [ 'div' , 'span' , 'p' , 'label' ] ;
1313
1414export type TextProps = {
1515 children : React . ReactNode ;
You can’t perform that action at this time.
0 commit comments