Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 Requests

on:
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
```