blob: 3a2a1704732982b5578704f810e4c69bf701ac4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
name: Check Release PR
on:
pull_request:
paths:
- 'CHANGELOG.md'
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
check_release_pr:
name: Check Release PR
if: startsWith(github.head_ref, 'chore/release/')
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout faker
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
path: faker
- name: Checkout playground
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
repository: faker-js/playground
path: playground
- name: Install pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
with:
package_json_file: faker/package.json
- name: Set node version to 24
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 24.6.0
cache: 'pnpm'
cache-dependency-path: |
faker/pnpm-lock.yaml
playground/pnpm-lock.yaml
- name: Install deps - faker
run: |
cd faker
pnpm install
- name: Build - faker
run: |
cd faker
pnpm run build
- name: Install deps - playground
run: |
cd playground
sed -i 's/overrides-for-release/overrides/' package.json
pnpm install --no-frozen-lockfile
- name: Build - playground
run: |
cd playground
pnpm run build
- name: Test - playground
run: |
cd playground
pnpm run test
|