Skip to content

Commit a5dedd0

Browse files
committed
test
1 parent 12d3541 commit a5dedd0

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/actions/setup-env/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ runs:
1717
- uses: pnpm/action-setup@v4
1818
with:
1919
run_install: false
20+
package_json_file: ${{ inputs.path }}/package.json
2021

2122
- name: Install dependencies
2223
working-directory: ${{ inputs.path }}

.github/workflows/docgen.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: DocGen
22

33
on:
4-
pull_request:
4+
push:
55
workflow_dispatch:
66

77
jobs:
@@ -17,14 +17,16 @@ jobs:
1717
path: documentation
1818
ref: ${{ github.ref_name }}
1919

20-
- uses: documentation/.github/actions/setup-env
20+
- uses: ./documentation/.github/actions/setup-env
21+
with:
22+
path: documentation
2123

2224
- name: Checkout DevExtreme
2325
uses: actions/checkout@v4
2426
with:
2527
path: devextreme
2628
repository: devexpress/devextreme
27-
ref: ${{ github.ref_name }}
29+
ref: 25_2
2830

2931
- name: NPM - devextreme
3032
working-directory: devextreme

0 commit comments

Comments
 (0)