1
1
mirror of https://github.com/primer/css.git synced 2024-11-13 08:04:16 +03:00

lint: run npm w/--unsafe-perm for lifecycle scripts

This commit is contained in:
Shawn Allen 2019-02-11 13:59:04 -08:00
parent 7417bd55ce
commit 46f55eeb78

View File

@ -16,13 +16,13 @@ action "install" {
action "lint" {
needs = "install"
uses = "actions/npm@v2.0.0"
args = "run lint"
args = ["--unsafe-perm", "run", "lint"]
}
action "test" {
needs = "install"
uses = "actions/npm@v2.0.0"
args = "test"
args = ["--unsafe-perm", "test"]
}
action "deploy" {