diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index efac0d7..a7e4dd5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -60,7 +60,8 @@ jobs: path: '**/node_modules' key: ${{ runner.os }}-${{ env.NODE_VERSION }}-modules-${{ hashFiles('**/yarn.lock') }} - name: Test - run: yarn test + run: | + yarn test || yarn test || yarn test || exit 1 env: CI: true diff --git a/.github/workflows/release-insiders.yml b/.github/workflows/release-insiders.yml index 85ea848..4016c30 100644 --- a/.github/workflows/release-insiders.yml +++ b/.github/workflows/release-insiders.yml @@ -40,7 +40,8 @@ jobs: CI: true - name: Test - run: npm test + run: | + yarn test || yarn test || yarn test || exit 1 env: CI: true