diff --git a/.github/actions/test/action.yaml b/.github/actions/test/action.yaml index 137955e..90f1743 100644 --- a/.github/actions/test/action.yaml +++ b/.github/actions/test/action.yaml @@ -25,4 +25,4 @@ runs: run: yarn install --immutable --immutable-cache --check-cache - name: 'Test' shell: bash - run: yarn test + run: yarn test-ci diff --git a/package.json b/package.json index bdcf975..e0edf17 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,8 @@ "test:generate-output": "jest --json --outputFile=.jest-test-results.json || true", "build": "rimraf dist && rollup -c", "dev": "rollup -c -w", - "test": "jest", + "test": "jest -ci", + "test-ci": "jest -ci", "lint": "eslint src", "prebuild:storybook": "npm run test:generate-output", "storybook": "npm run test:generate-output && storybook dev -p 6006",