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(release): check release PR #2988

Merged
merged 7 commits into from
Jul 7, 2024
Merged
Changes from 2 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
67 changes: 67 additions & 0 deletions .github/workflows/check-release-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Check Release PR

on:
pull_request:

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

jobs:
check_release_pr:
if: startsWith(github.head_ref, 'chore/release/')
xDivisionByZerox marked this conversation as resolved.
Show resolved Hide resolved
runs-on: ubuntu-latest
timeout-minutes: 10

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

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

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

- name: Set node version to 22
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 22
cache: 'pnpm'
cache-dependency-path: |
faker/pnpm-lock.yaml
playground/pnpm-lock.yaml

- name: Install deps - faker
run: |
cd faker
pnpm install
env:
CYPRESS_INSTALL_BINARY: 0

- name: Build - faker
run: |
cd faker
pnpm run build

- name: Install deps - playground
run: |
cd playground
sed -i 's/overrides-for-release/overrides/g' package.json
ST-DDT marked this conversation as resolved.
Show resolved Hide resolved
pnpm install --no-frozen-lockfile

- name: Build - playground
run: |
cd playground
pnpm run build

- name: Test - playground
run: |
cd playground
pnpm run test