mirror of
https://github.com/actions/github-script.git
synced 2026-02-07 19:47:26 +00:00
Fix quotations in tests
This commit is contained in:
parent
84724927e3
commit
384d6cf581
1 changed files with 3 additions and 3 deletions
6
.github/workflows/integration.yml
vendored
6
.github/workflows/integration.yml
vendored
|
|
@ -77,7 +77,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
const endpoint = github.request.endpoint
|
const endpoint = github.request.endpoint
|
||||||
return endpoint({url: \"/graphql\"}).headers.accept
|
return endpoint({url: "/graphql"}).headers.accept
|
||||||
result-encoding: string
|
result-encoding: string
|
||||||
- id: previews-set-single
|
- id: previews-set-single
|
||||||
name: Previews set to a single value
|
name: Previews set to a single value
|
||||||
|
|
@ -86,7 +86,7 @@ jobs:
|
||||||
previews: foo
|
previews: foo
|
||||||
script: |
|
script: |
|
||||||
const endpoint = github.request.endpoint
|
const endpoint = github.request.endpoint
|
||||||
return endpoint({url: \"/graphql\"}).headers.accept
|
return endpoint({url: "/graphql"}).headers.accept
|
||||||
result-encoding: string
|
result-encoding: string
|
||||||
- id: previews-set-multiple
|
- id: previews-set-multiple
|
||||||
name: Previews set to comma-separated list
|
name: Previews set to comma-separated list
|
||||||
|
|
@ -95,7 +95,7 @@ jobs:
|
||||||
previews: foo,bar,baz
|
previews: foo,bar,baz
|
||||||
script: |
|
script: |
|
||||||
const endpoint = github.request.endpoint
|
const endpoint = github.request.endpoint
|
||||||
return endpoint({url: \"/graphql\"}).headers.accept
|
return endpoint({url: "/graphql"}).headers.accept
|
||||||
result-encoding: string
|
result-encoding: string
|
||||||
- run: |
|
- run: |
|
||||||
echo "- Validating previews default"
|
echo "- Validating previews default"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue