Skip to content

Commit

Permalink
add workflow for new version of website
Browse files Browse the repository at this point in the history
  • Loading branch information
subject026 committed Jun 3, 2024
1 parent f97f9a3 commit 330109b
Show file tree
Hide file tree
Showing 2 changed files with 130 additions and 4 deletions.
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
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
8 changes: 4 additions & 4 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 Down

0 comments on commit 330109b

Please sign in to comment.