We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07b5a5a commit 5ae4978Copy full SHA for 5ae4978
.github/workflows/pull-request.yml
@@ -80,6 +80,8 @@ jobs:
80
test-provider-api-docs:
81
name: Test Provider API Docs
82
runs-on: ubuntu-latest
83
+ env:
84
+ GOPATH: ${{ github.workspace }}/go
85
steps:
86
- name: Install Node
87
uses: actions/setup-node@v4
@@ -100,11 +102,11 @@ jobs:
100
102
- name: Check out branch
101
103
uses: actions/checkout@v4
104
- - name: Yarn Install
- run: yarn install
105
-
106
- name: Run Provider Tests
107
- run: ./scripts/ci/run-provider-tests.sh
+ run: |
+ make ensure
108
+ make build-assets
109
+ ./scripts/ci/run-provider-tests.sh
110
111
# Preview runs a registry build into a commit specific S3 bucket to preview changes.
112
#
0 commit comments