From 5711f8c8e73288b4f4b8a1c8169806ff8a644e5e Mon Sep 17 00:00:00 2001 From: baseballyama Date: Sat, 15 Jan 2022 22:31:07 +0900 Subject: [PATCH] retry failed test --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bbfde04f67..c5f1506fd8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,8 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: npm - - run: npm install - - run: npm test + - run: 'npm i' + - run: 'npm run test || npm run test || npm run test' env: CI: true Lint: @@ -38,4 +38,5 @@ jobs: - uses: actions/setup-node@v2 with: cache: npm - - run: 'npm i && npm run test:unit' + - run: 'npm i' + - run: 'npm run test:unit || npm run test:unit || npm run test:unit'