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

infra(ci): run against playground #3095

Open
wants to merge 28 commits into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
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
49 changes: 49 additions & 0 deletions .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Check PR

on:
pull_request:

permissions:
contents: read # to fetch code (actions/checkout)

jobs:
playground:
runs-on: ubuntu-latest
timeout-minutes: 10
name: Check Playground

steps:
- name: Checkout Faker
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
path: faker

- name: Set node version to 22
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: 22

- name: Checkout Playground
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
repository: faker-js/playground
path: faker-playground

- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
package_json_file: faker-playground/package.json

- name: Build Faker
run: pnpm install && pnpm build
working-directory: faker
env:
CYPRESS_INSTALL_BINARY: 0

- name: Check Playground
run: |
sed -i -e "s/overrides-for-release/overrides/g" package.json
pnpm install --no-frozen-lockfile
pnpm -r --workspace-concurrency 1 build
pnpm -r --workspace-concurrency 1 test
working-directory: faker-playground
2 changes: 2 additions & 0 deletions test/faker.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ describe('faker', () => {
.filter((key) => typeof console[key] === 'function')
.map((methodName) => vi.spyOn(console, methodName));

// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore package types depends on been built
const file: unknown = await import('..');
expect(file).toBeDefined();

mshima marked this conversation as resolved.
Show resolved Hide resolved
Expand Down