Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development #38

Merged
merged 16 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 126 additions & 0 deletions .github/workflows/old-website.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
name: Website CI OLD
on:
workflow_dispatch:
pull_request:
branches:
- main
- development
paths:
- "apps/site/**"
- "packages/theme/**"
- "packages/site-ui/**"
push:
branches:
- main
- development
paths:
- "apps/site/**"
- "packages/theme/**"
- "packages/site-ui/**"

jobs:
linting:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.8.0

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"

- name: Install Dependencies
run: pnpm site install

- name: Lint
run: pnpm site run lint

build:
name: Next Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.8.0

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"
# run: pnpm site install

# - name: Setup pnpm
# uses: pnpm/action-setup@v2
# with:
# version: 8.8.0

- name: Install Dependencies
run: pnpm site install

- name: Run build
run: pnpm site run build

test:
name: Playwright Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.8.0

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"
# run: pnpm site install

- name: Install Dependencies
run: pnpm site install

- name: Run build
run: pnpm site run build

# - name: Get pnpm store directory
# id: pnpm-cache
# shell: bash
# run: |
# echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT

# - uses: actions/cache@v3
# name: Setup pnpm cache
# with:
# path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
# restore-keys: |
# ${{ runner.os }}-pnpm-store-

- name: Install Playwright Browsers
run: pnpm site playwright install --with-deps

- name: Run Playwright tests
run: pnpm site playwright test

- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: apps/site/playwright-report/
retention-days: 30
113 changes: 46 additions & 67 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ on:
- main
- development
paths:
- "apps/site/**"
- "apps/website/**"
- "packages/theme/**"
- "packages/site-ui/**"
- "packages/shared/**"
push:
branches:
- main
- development
paths:
- "apps/site/**"
- "apps/website/**"
- "packages/theme/**"
- "packages/site-ui/**"
- "packages/shared/**"

jobs:
linting:
Expand All @@ -38,13 +38,13 @@ jobs:
cache: "pnpm"

- name: Install Dependencies
run: pnpm site install
run: pnpm website install

- name: Lint
run: pnpm site run lint
run: pnpm website run lint

build:
name: Next Build
name: Astro Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
Expand All @@ -60,67 +60,46 @@ jobs:
with:
node-version: 20
cache: "pnpm"
# run: pnpm site install

# - name: Setup pnpm
# uses: pnpm/action-setup@v2
# with:
# version: 8.8.0

- name: Install Dependencies
run: pnpm site install

- name: Run build
run: pnpm site run build

test:
name: Playwright Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.8.0

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"
# run: pnpm site install

- name: Install Dependencies
run: pnpm site install
run: pnpm website install

- name: Run build
run: pnpm site run build

# - name: Get pnpm store directory
# id: pnpm-cache
# shell: bash
# run: |
# echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT

# - uses: actions/cache@v3
# name: Setup pnpm cache
# with:
# path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
# restore-keys: |
# ${{ runner.os }}-pnpm-store-

- name: Install Playwright Browsers
run: pnpm site playwright install --with-deps

- name: Run Playwright tests
run: pnpm site playwright test

- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: apps/site/playwright-report/
retention-days: 30
run: pnpm website run build

# test:
# name: Playwright Tests
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3

# - name: Setup pnpm
# uses: pnpm/action-setup@v2
# with:
# version: 8.8.0

# - name: Setup node
# uses: actions/setup-node@v3
# with:
# node-version: 20
# cache: "pnpm"

# - name: Install Dependencies
# run: pnpm website install

# - name: Run build
# run: pnpm website run build

# - name: Install Playwright Browsers
# run: pnpm site playwright install --with-deps

# - name: Run Playwright tests
# run: pnpm site playwright test

# - uses: actions/upload-artifact@v3
# if: always()
# with:
# name: playwright-report
# path: apps/site/playwright-report/
# retention-days: 30
3 changes: 3 additions & 0 deletions apps/app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

# wagmi cli
generated.ts
14 changes: 10 additions & 4 deletions apps/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,31 @@
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "wagmi generate",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@breadchain.xyz/theme": "workspace:*",
"@rainbow-me/rainbowkit": "^2.1.0",
"@tanstack/react-query": "^5.37.1",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"next": "14.2.3"
"viem": "2.x",
"wagmi": "^2.9.2"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@wagmi/cli": "^2.1.7",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.3"
"typescript": "^5"
}
}
Loading
Loading