Disable yarn scripts on CI (#1100)

This commit is contained in:
Jaco
2022-02-13 09:36:52 +01:00
committed by GitHub
parent dbe7df9aee
commit 3fb56e40f9
6 changed files with 27 additions and 18 deletions
+8 -8
View File
@@ -6,38 +6,38 @@ on:
jobs:
crosscheck:
runs-on: ubuntu-latest
env:
YARN_ENABLE_SCRIPTS: false
CI_LOG: 123
GITHUB_TOKEN: ${{ secrets.GH_PAT_BOT }}
steps:
- uses: actions/checkout@v2
- name: check
env:
CI_LOG: 123
run: |
yarn install --immutable | grep -v 'YN0013'
yarn phishing:crosscheck
- name: issue
if: ${{ failure() }}
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT_BOT }}
with:
filename: .github/crosscheck.md
update_existing: true
addrcheck:
runs-on: ubuntu-latest
env:
YARN_ENABLE_SCRIPTS: false
CI_LOG: 123
GITHUB_TOKEN: ${{ secrets.GH_PAT_BOT }}
steps:
- uses: actions/checkout@v2
- name: check
env:
CI_LOG: 123
run: |
yarn install --immutable | grep -v 'YN0013'
yarn phishing:addrcheck
- name: issue
if: ${{ failure() }}
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT_BOT }}
with:
filename: .github/addrcheck.md
update_existing: true