Skip to content

alexlafroscia/actions-ember-testing

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

actions-ember-testing

GitHub Action for Ember Testing

This GitHub Action provides a Node 10 environment and Headless Chrome, so you can run your Ember tests in GitHub Actions.

Example Workflow

Super Quick Start

Want to get started quick? Define a .github/main.workflow like this:

workflow "Build and Test" {
  on = "push"
  resolves = ["Run Tests"]
}

action "Install Dependencies" {
  uses = "nuxt/actions-yarn@node-10"
  args = "install"
}

action "Run Tests" {
  uses = "alexlafroscia/actions-ember-testing@master"
  needs = ["Install Dependencies"]
}

Want to know more or a more advanced configuration? Check out the wiki!

Projects Using this Action

If you want help setting this up for your own projects, you can check out the following projects which leverage this Action.

Want to add your project to the list? Feel free to send a PR!