From 8732a0dc72396d51f3fba9f068ea4b004c0f77e0 Mon Sep 17 00:00:00 2001 From: hieu-w Date: Mon, 25 Nov 2024 11:48:04 +0700 Subject: [PATCH 1/2] Update vitest.config.mjs Increase test timeout to 10 seconds --- vitest.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/vitest.config.mjs b/vitest.config.mjs index e10a919..7c94dcc 100644 --- a/vitest.config.mjs +++ b/vitest.config.mjs @@ -10,6 +10,7 @@ export default defineConfig({ reporter: ["text", "html"], include: ["src/**/*.ts"], }, + timeout: 10000, silent: true, }, }); From 23e4f58db8e4f94d787bd5461b7568814b774d8b Mon Sep 17 00:00:00 2001 From: hieu-w Date: Mon, 25 Nov 2024 11:48:14 +0700 Subject: [PATCH 2/2] Fix CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 433aa55..5502ac5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: if: github.ref == 'refs/heads/master' uses: jakejarvis/s3-sync-action@master env: - SOURCE_DIR: "./example/react-app/build" + SOURCE_DIR: "./examples/react-app/build" AWS_REGION: "us-east-1" AWS_S3_BUCKET: "demo-sfa.web3auth.io" AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}