This commit is contained in:
Darío Kondratiuk 2020-01-30 09:44:42 -03:00 коммит произвёл GitHub
Родитель 5e835afb32
Коммит 14c759e688
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -11,10 +11,11 @@ jobs:
- uses: actions/checkout@v2
- name: We shouldn't mention puppeteer
run: |
search_result=$(grep -r -i -n "puppeteer" $GITHUB_WORKSPACE/src)
cd $GITHUB_WORKSPACE/src
search_result=$(grep -r -i -n "puppeteer")
if [[ $search_result ]]; then
echo "Puppeteer found! \n $search_result"
exit 0
exit 1
else
echo "What is a puppeteer?"
fi