Skip to content

Commit

Permalink
Added github action to install and test
Browse files Browse the repository at this point in the history
  • Loading branch information
justinsisley committed Jun 6, 2019
1 parent f2f3f12 commit 074a93b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
workflow "Install and Test" {
on = "push"
resolves = ["Test"]
}

action "Install" {
uses = "actions/npm@master"
args = "install"
}

action "Test" {
needs = "Install"
uses = "actions/npm@master"
args = "test"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-css-modules",
"version": "2.0.1",
"version": "2.1.0",
"description": "A Jest processor that prevents CSS module parse errors",
"repository": {
"type": "git",
Expand Down

0 comments on commit 074a93b

Please sign in to comment.