Explorar el Código

Install deps as part of GitHub Actions workflow

..forgot to install dependencies before executing
`$ npm test` which obviously exploded due to the
fact that `eslint` and friends weren't available.
tags/v3.0.2
Phillip Johnsen GitHub hace 6 años
padre
commit
930a485a28
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      .github/main.workflow

+ 5
- 0
.github/main.workflow Ver fichero

@@ -3,6 +3,11 @@ workflow "Verify changes on push" {
on = "push"
}

action "Install dependencies" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
args = "install"
}

action "Run all tests" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
args = "test"


Cargando…
Cancelar
Guardar