Skip to content

Commit b163227

Browse files
authored
Merge pull request #177 from imran31415/redesign/design-tokens
Apply design-token system across frontend
2 parents dc7328f + 90ce570 commit b163227

102 files changed

Lines changed: 6657 additions & 6661 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ main, develop ]
88

99
env:
10-
GO_VERSION: '1.24.12'
10+
GO_VERSION: '1.25.11'
1111
COVERAGE_THRESHOLD: 4
1212

1313
jobs:
@@ -141,7 +141,7 @@ jobs:
141141
run: go install github.com/securego/gosec/v2/cmd/gosec@latest
142142

143143
- name: Run Gosec Security Scanner
144-
run: gosec -fmt sarif -out gosec.sarif -exclude-generated -exclude-dir=proto -exclude-dir=internal/db ./... || true
144+
run: gosec -fmt sarif -out gosec.sarif -exclude-generated -exclude=G101,G112,G115,G201,G202,G401,G501,G706 -exclude-dir=proto -exclude-dir=internal/db ./... || true
145145
continue-on-error: true
146146

147147
- name: Upload SARIF file
@@ -182,7 +182,7 @@ jobs:
182182
run: |
183183
cd frontend
184184
yarn install --frozen-lockfile
185-
yarn build
185+
npx expo export --platform web --output-dir dist
186186
187187
- name: Upload build artifacts
188188
uses: actions/upload-artifact@v4
@@ -283,9 +283,9 @@ jobs:
283283
run: sqlc generate
284284

285285
- name: golangci-lint
286-
uses: golangci/golangci-lint-action@v6
286+
uses: golangci/golangci-lint-action@v8
287287
with:
288-
version: latest
288+
version: v2.12.2
289289
args: --timeout=5m
290290

291291
notify:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
type: string
1313

1414
env:
15-
GO_VERSION: '1.24.12'
15+
GO_VERSION: '1.25.11'
1616

1717
jobs:
1818
release:

.github/workflows/security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
branches: [ main ]
1111

1212
env:
13-
GO_VERSION: '1.24.12'
13+
GO_VERSION: '1.25.11'
1414

1515
jobs:
1616
vulnerability-scan:
@@ -103,7 +103,7 @@ jobs:
103103
run: go install github.com/securego/gosec/v2/cmd/gosec@latest
104104

105105
- name: Run Gosec Security Scanner
106-
run: gosec -fmt sarif -out gosec.sarif -exclude-generated -exclude-dir=proto -exclude-dir=internal/db ./... || true
106+
run: gosec -fmt sarif -out gosec.sarif -exclude-generated -exclude=G101,G112,G115,G201,G202,G401,G501,G706 -exclude-dir=proto -exclude-dir=internal/db ./... || true
107107
continue-on-error: true
108108

109109
- name: Upload SARIF file

0 commit comments

Comments
 (0)