Skip to content

NuckChorris/ember-cli-actions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Actions for Ember CLI

This Action for ember-cli enables arbitrary actions with the ember-cli command-line client, including deploying ember applications with ember-cl-deploy.

Usage

An example workflow to build, test, and publish an ember application follows:

workflow "Build, Test, and Publish" {
  on = "push"
  resolves = ["Deploy"]
}

action "Build" {
  uses = "NuckChorris/ember-cli-actions@master"
  args = "install"
}

action "Test" {
  needs = "Build"
  uses = "NuckChorris/ember-cli-actions@master"
  args = "test"
}

action "Publish" {
  needs = "Test"
  uses = "NuckChorris/ember-cli-actions@master"
  args = "deploy --access public"
}

License

This project is released under the MIT License.

About

A set of GitHub Actions for common Ember-CLI tasks

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published