misc(build): disable fail-fast on gh basics workflow (#10551)

This commit is contained in:
Paul Irish 2020-04-09 13:55:09 -07:00 коммит произвёл GitHub
Родитель 5b0c5b8ae6
Коммит 159fd93e48
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 1 удалений

5
.github/workflows/basics.yml поставляемый
Просмотреть файл

@ -11,6 +11,9 @@ jobs:
basics:
runs-on: ubuntu-latest
strategy:
# e.g. if lint fails, continue to the unit tests anyway
fail-fast: false
steps:
- name: git clone
@ -21,7 +24,7 @@ jobs:
with:
node-version: 10.x
# Cache yarn deps. thx https://github.com/actions/cache/blob/master/examples.md#node---yarn
# Cache yarn deps. thx https://github.com/actions/cache/blob/master/examples.md#node---yarn
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"