Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ typings/

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
Expand All @@ -100,4 +99,6 @@ dist
.dynamodb/

# TernJS port file
.tern-port
.tern-port

node_modules
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,10 @@ URL of a human-readable report of the test execution
### `computedStatus`
A human-readable test status that matches the status values on the test dashboard in the UI

## Building

`vercel/ncc` is used to build action to avoid checking in the `node_modules` directory.
Use `npm build` to compile the action into the `dist/` directory.

## Help
For any help using this integration, reach out to `[email protected]`. You can also see RapidAPI Testing Guide in our [Help Center](https://docs.rapidapi.com/docs/creating-test-flows).
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ outputs:
description: 'Url for the full test execution URL'
runs:
using: 'node12'
main: 'index.js'
main: 'dist/index.js'
Loading