Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vtex/action-io-app-test
Github action to run tests in VTEX IO Apps
https://github.com/vtex/action-io-app-test
Last synced: about 1 month ago
JSON representation
Github action to run tests in VTEX IO Apps
- Host: GitHub
- URL: https://github.com/vtex/action-io-app-test
- Owner: vtex
- Created: 2020-04-15T16:52:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-17T19:52:54.000Z (over 1 year ago)
- Last Synced: 2024-10-31T10:49:49.574Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 426 KB
- Stars: 6
- Watchers: 18
- Forks: 2
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VTEX IO App test action
This is a simple Github action that runs the `test` script of IO apps. The action searches for a `manifest.json` in the root of the project and for a `package.json` for each builder the manifest has.
## Usage
To use it, just add it to your workflow and you're done:
```yml
# someworkflow.yml
name: CI Pull Requestson:
pull_request:
branches: [master]jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 12.x
uses: actions/setup-node@master
with:
node-version: 12.x
env:
RUNNER_TEMP: /tmp- uses: vtex/action-io-app-test@master
```