yarn run lint --fix && yarn build

pull/256/head
Ivan Hernandez 2021-05-21 10:20:31 +02:00
parent ebb1d0aece
commit 2a6add4924
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class Docker {
--volume "${runnerTempPath}/_github_home":"/root" \ --volume "${runnerTempPath}/_github_home":"/root" \
--volume "${runnerTempPath}/_github_workflow":"/github/workflow" \ --volume "${runnerTempPath}/_github_workflow":"/github/workflow" \
--volume "${workspace}":"/github/workspace" \ --volume "${workspace}":"/github/workspace" \
${sshAgent ? '--volume ' + sshAgent + ':/ssh-agent' : ''} \ ${sshAgent ? `--volume ${sshAgent}:/ssh-agent` : ''} \
${sshAgent ? '--volume /home/runner/.ssh/known_hosts:/root/.ssh/known_hosts:ro' : ''} \ ${sshAgent ? '--volume /home/runner/.ssh/known_hosts:/root/.ssh/known_hosts:ro' : ''} \
${image}`; ${image}`;