Feature/exc test ci #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check examples | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build examples | |
runs-on: ubuntu-latest-4-cores | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: setup | |
uses: ./.github/actions/pr-setup | |
- name: Build | |
run: yarn workspaces foreach -Apt --include='examples/**' run build | |
lint: | |
name: Lint examples | |
runs-on: ubuntu-latest-4-cores | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: setup | |
uses: ./.github/actions/pr-setup | |
- name: Lint | |
run: yarn workspaces foreach -Apt --include='examples/**' run lint | |
test: | |
name: Test examples | |
runs-on: ubuntu-latest-4-cores | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: setup | |
uses: ./.github/actions/pr-setup | |
- name: Test | |
run: yarn workspaces foreach -Apt --include='examples/**' run test | |
e2e: | |
name: E2E examples | |
runs-on: ubuntu-latest-4-cores | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: setup | |
uses: ./.github/actions/pr-setup | |
- name: Cache Playwright browsers | |
uses: actions/cache@v3 | |
id: cache-playwright-browsers | |
with: | |
path: ~/.cache/ms-playwright/ | |
key: ${{ runner.OS }}-playwright-browsers-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.OS }}-playwright-browsers- | |
- name: Install Playwright Browsers | |
if: steps.cache-playwright-browsers.outputs.cache-hit != 'true' | |
run: npx playwright install --with-deps | |
- name: E2E | |
run: yarn workspaces foreach -Apt --include='examples/**' run e2e | |
env: | |
NEXT_PUBLIC_PUBLISHABLE_KEY: "pk_imapik-test-5ss4GpFy-n@$$Ye3LSox" | |
NEXT_PUBLIC_CLIENT_ID: "K846H940Uxokhz1aDb034QwBclYnAH24" | |
# add to github secrets, I don't have access | |
# NEXT_PUBLIC_PUBLISHABLE_KEY: ${{ secrets.PUBLISHABLE_KEY }} | |
# NEXT_PUBLIC_CLIENT_ID: ${{ secrets.CLIENT_ID }} | |