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 f2756af commit 6b6b215Copy full SHA for 6b6b215
.github/workflows/php-package.yml
@@ -14,10 +14,10 @@ jobs:
14
steps:
15
- uses: actions/checkout@v3
16
- uses: actions/setup-node@v3
17
- - name: Install Prism
18
- run: (yarn global add @stoplight/prism-cli)
19
- name: Start Prism Server
20
- run: (prism mock -h 127.0.0.1 openapi.json &)
+ run: |
+ yarn install
+ ./node_modules/.bin/prism mock -h 127.0.0.1 openapi.json &
21
- name: Validate composer.json and composer.lock
22
run: composer validate
23
- name: Cache Composer packages
package.json
@@ -0,0 +1,8 @@
1
+{
2
+ "dependencies": {
3
+ "@stoplight/prism-cli": "5.6.0"
4
+ },
5
+ "resolutions": {
6
+ "@stoplight/json": "3.20.0"
7
+ }
8
+}
0 commit comments