From 4ff871d8f8d7f5dd140aaad67711c233c8b7da5b Mon Sep 17 00:00:00 2001 From: Pavlo Buidenkov Date: Sun, 22 Nov 2020 17:52:04 +0200 Subject: [PATCH] fix github workflow issue --- .github/workflows/codecov.yml | 6 ++++++ .github/workflows/release.yml | 6 ++++++ .github/workflows/test.yml | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 3ad3952..4ca357a 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -9,11 +9,15 @@ jobs: uses: actions/checkout@v2.3.1 - name: Install Node.js, NPM and Yarn + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' uses: actions/setup-node@v1.4.2 with: node-version: 14 - name: yarn install from npmjs registry + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' run: | cd app/client yarn install --no-lockfile @@ -21,6 +25,8 @@ jobs: yarn install --no-lockfile - name: Configure private AWS npm registry and install packages from it + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' if: ${{ failure() }} run: | npm config set registry https://packages.deskreen.com/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c5ac2be..98beb9f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,11 +42,15 @@ jobs: uses: actions/checkout@v2.3.1 - name: Install Node.js, NPM and Yarn + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' uses: actions/setup-node@v1.4.2 with: node-version: 14 - name: yarn install from npmjs registry + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' run: | cd app/client yarn install --no-lockfile @@ -54,6 +58,8 @@ jobs: yarn install --no-lockfile - name: Configure private AWS npm registry and install packages from it + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' if: ${{ failure() }} run: | npm config set registry https://packages.deskreen.com/ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b7a34d1..c5c56ba 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,11 +17,15 @@ jobs: uses: actions/checkout@v2.3.1 - name: Install Node.js, NPM and Yarn + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' uses: actions/setup-node@v1.4.2 with: node-version: 14 - name: yarn install from npmjs registry + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' run: | cd app/client yarn install --no-lockfile @@ -29,6 +33,8 @@ jobs: yarn install --no-lockfile - name: Configure private AWS npm registry and install packages from it + env: + ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' if: ${{ failure() }} run: | npm config set registry https://packages.deskreen.com/