Skip to content

Bump dependency versions + Add ncc build #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
@@ -79,7 +79,6 @@ typings/

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
@@ -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
@@ -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
@@ -23,4 +23,4 @@ outputs:
description: 'Url for the full test execution URL'
runs:
using: 'node12'
main: 'index.js'
main: 'dist/index.js'
Loading