Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c11ed23 commit 4c2c97cCopy full SHA for 4c2c97c
.github/main.workflow
@@ -28,6 +28,9 @@ action "branch-filter" {
28
action "deploy" {
29
needs = ["branch-filter"]
30
uses = "actions/bin/sh@master"
31
- args = ["echo Deploy with secret $PHONY_SECRET"]
+ args = ["env"]
32
secrets = ["PHONY_SECRET"]
33
+ env = {
34
+ PHONY_ENV = "foo"
35
+ }
36
}
package.json
@@ -10,10 +10,11 @@
10
},
11
"devDependencies": {
12
"chai": "^4.2.0",
13
+ "chai-http": "^4.2.1",
14
"mocha": "^5.2.0"
15
16
"scripts": {
- "start": "node index.js",
17
- "test": "mocha ./tests --recursive"
+ "start": "node index.js",
18
+ "test": "mocha ./tests --recursive"
19
20
0 commit comments