Skip to content
This repository was archived by the owner on Aug 14, 2020. It is now read-only.

Commit d720dbf

Browse files
Update Naming For Inputs (#2)
1 parent 1a85c18 commit d720dbf

File tree

4 files changed

+304
-304
lines changed

4 files changed

+304
-304
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ steps:
2828
uses: undefinedlabs/scope-for-javascript-action@v1
2929
with:
3030
dsn: ${{secrets.SCOPE_DSN}} # required
31-
command: npm test # optional - default is 'npm test'
32-
command-cypress: npm run cypress:run # optional - command to run cypress tests if your repository includes them
31+
jest-command: npm test # optional - default is 'npm test'
32+
cypress-command: npm run cypress:run # optional - command to run cypress tests if your repository includes them
3333
cypress-endpoint: http://localhost:3000 # optional - URL to run the cypress tests against
3434
```

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: 'Scope for Javascript'
22
author: 'Undefined Labs'
33
description: 'Automatically instruments and runs your tests using the Scope Javascript agent.'
44
inputs:
5-
command:
6-
description: 'Command to run your tests.'
5+
jest-command:
6+
description: 'Command to run your jest tests.'
77
required: false
88
default: 'npm test'
9-
command-cypress:
9+
cypress-command:
1010
description: 'Command to run your cypress tests.'
1111
required: false
1212
cypress-endpoint:

0 commit comments

Comments
 (0)