-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a520627
commit 95268f3
Showing
15 changed files
with
3,179 additions
and
23,871 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
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: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: ".nvmrc" | ||
registry-url: https://registry.npmjs.org/ | ||
cache: "yarn" | ||
|
||
- name: install dependencies | ||
run: yarn install --immutable | ||
|
||
- 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: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: ".nvmrc" | ||
registry-url: https://registry.npmjs.org/ | ||
cache: "yarn" | ||
|
||
- name: install dependencies | ||
run: yarn install --immutable | ||
|
||
- 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: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: ".nvmrc" | ||
registry-url: https://registry.npmjs.org/ | ||
cache: "yarn" | ||
|
||
- name: install dependencies | ||
run: yarn install --immutable | ||
|
||
- 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: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: ".nvmrc" | ||
registry-url: https://registry.npmjs.org/ | ||
cache: "yarn" | ||
|
||
- name: install dependencies | ||
run: yarn install --immutable | ||
|
||
- 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 }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
nodeLinker: node-modules | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs | ||
spec: "@yarnpkg/plugin-workspace-tools" | ||
|
||
yarnPath: .yarn/releases/yarn-3.6.1.cjs |
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
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
Oops, something went wrong.