Skip to content

Commit 5ae4978

Browse files
committed
fix
1 parent 07b5a5a commit 5ae4978

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/pull-request.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ jobs:
8080
test-provider-api-docs:
8181
name: Test Provider API Docs
8282
runs-on: ubuntu-latest
83+
env:
84+
GOPATH: ${{ github.workspace }}/go
8385
steps:
8486
- name: Install Node
8587
uses: actions/setup-node@v4
@@ -100,11 +102,11 @@ jobs:
100102
- name: Check out branch
101103
uses: actions/checkout@v4
102104

103-
- name: Yarn Install
104-
run: yarn install
105-
106105
- name: Run Provider Tests
107-
run: ./scripts/ci/run-provider-tests.sh
106+
run: |
107+
make ensure
108+
make build-assets
109+
./scripts/ci/run-provider-tests.sh
108110
109111
# Preview runs a registry build into a commit specific S3 bucket to preview changes.
110112
#

0 commit comments

Comments
 (0)