updates for tests

This commit is contained in:
Casey Lee
2020-02-21 22:19:59 -08:00
parent 2cb276ca05
commit 9179d8924d
3 changed files with 7 additions and 5 deletions

View File

@@ -57,13 +57,13 @@ func TestRunEvent(t *testing.T) {
table := table
t.Run(table.workflowPath, func(t *testing.T) {
platforms := map[string]string{
"ubuntu-latest": "ubuntu:18.04",
"ubuntu-latest": "node:12.6-buster-slim",
}
runnerConfig := &Config{
Workdir: "testdata",
EventName: table.eventName,
Platforms: platforms,
ReuseContainers: true,
ReuseContainers: false,
}
runner, err := New(runnerConfig)
assert.NilError(t, err, table.workflowPath)