Skip to content

Commit b50f797

Browse files
authored
Merge pull request #1103 from haqq-network/dev
chore: release
2 parents 472cb9d + a17c207 commit b50f797

20 files changed

+3425
-2822
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
test-and-lint:
2424
name: Test and Lint
2525
runs-on:
26-
- frontend
26+
- ubuntu
2727
- self-hosted
2828
if: (github.event_name == 'pull_request' && !github.event.pull_request.draft) || (github.event_name == 'push' && github.ref == 'refs/heads/dev')
2929
timeout-minutes: 15
@@ -32,26 +32,30 @@ jobs:
3232
uses: actions/checkout@v4
3333
with:
3434
fetch-depth: 0
35+
3536
- name: Setup pnpm
3637
uses: pnpm/action-setup@v4
38+
3739
- name: Setup Node.js
3840
uses: actions/setup-node@v4
3941
with:
4042
node-version-file: .nvmrc
4143
cache: pnpm
42-
- name: Setup dependencies
43-
run: |
44-
pnpm install --frozen-lockfile
45-
pnpm cypress install --force
46-
- uses: nrwl/nx-set-shas@v4
47-
# - name: Run lint for affected projects
48-
# run: pnpm exec nx affected --target lint
49-
# - name: Run tests for affected projects
50-
# run: pnpm exec nx affected --target test --ci --coverage
51-
# - name: Run build for affected projects
52-
# run: pnpm exec nx affected --target build
53-
- name: Run lint test and build
54-
run: pnpm exec nx run-many --target lint test
44+
45+
- name: Install dependencies
46+
run: pnpm install --frozen-lockfile
47+
48+
# - name: Install Playwright
49+
# run: pnpm exec playwright install --with-deps
50+
51+
- name: Set SHAs
52+
uses: nrwl/nx-set-shas@v4
53+
with:
54+
main-branch-name: dev
55+
56+
- name: Run lint and test
57+
run: pnpm exec nx affected -t lint test --parallel=5
58+
5559
- name: Upload coverage reports to Codecov
5660
uses: codecov/codecov-action@v4
5761
with:

.github/workflows/preview-vercel-shell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
Preview:
1414
runs-on:
15-
- frontend
15+
- ubuntu
1616
- self-hosted
1717
if: (github.event_name == 'pull_request' && !github.event.pull_request.draft) || (github.event_name == 'push' && github.ref == 'refs/heads/dev')
1818
env:

.github/workflows/preview-vercel-storybook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
Preview:
1414
runs-on:
15-
- frontend
15+
- ubuntu
1616
- self-hosted
1717
if: (github.event_name == 'pull_request' && !github.event.pull_request.draft) || (github.event_name == 'push' && github.ref == 'refs/heads/dev')
1818
env:

.github/workflows/preview-vercel-vesting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
Preview:
1414
runs-on:
15-
- frontend
15+
- ubuntu
1616
- self-hosted
1717
if: (github.event_name == 'pull_request' && !github.event.pull_request.draft) || (github.event_name == 'push' && github.ref == 'refs/heads/dev')
1818
env:

.github/workflows/production-vercel-shell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
Production:
1111
runs-on:
12-
- frontend
12+
- ubuntu
1313
- self-hosted
1414
env:
1515
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}

.github/workflows/production-vercel-storybook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
Production:
1111
runs-on:
12-
- frontend
12+
- ubuntu
1313
- self-hosted
1414
env:
1515
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}

.github/workflows/production-vercel-vesting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
Production:
1111
runs-on:
12-
- frontend
12+
- ubuntu
1313
- self-hosted
1414
env:
1515
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.16
1+
22.14

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@
2626

2727
<details>
2828
<summary>Must read docs</summary>
29+
<h3>Local docs</h3>
30+
<ol>
31+
<li><a target="_blank" rel="noopener noreferrer" href="./docs/tolgee.md">Tolgee</a></li>
32+
</ol>
33+
<h3>Development Resources</h3>
2934
<ol>
3035
<li>
3136
<a href="https://www.conventionalcommits.org/en/v1.0.0">Conventional commits</a>

apps/shell/next.config.mjs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,6 @@ const sentryWebpackPluginOptions = {
108108
// side errors will fail.
109109
tunnelRoute: '/api/monitoring',
110110

111-
// Hides source maps from generated client bundles
112-
hideSourceMaps: true,
113-
114111
// Automatically tree-shake Sentry logger statements to reduce bundle size
115112
disableLogger: true,
116113

0 commit comments

Comments
 (0)