From 5366067abd7727e51fd25b99c53e5e44ec23dc63 Mon Sep 17 00:00:00 2001 From: Uoc Tamika Date: Sun, 7 Jun 2026 01:11:30 +0000 Subject: [PATCH 1/3] Updating dependencies --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 67360a7..2e0c8ba 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,8 @@ "clean": "rm -rf dist", "test": "vitest run", "test:watch": "vitest", - "test:coverage": "vitest run --coverage" + "test:coverage": "vitest run --coverage", + "test:coverageWatch": "vitest --coverage" }, "repository": { "type": "git", From 42dee58697c19ad5d90885b53dd349fac8c4be68 Mon Sep 17 00:00:00 2001 From: Uoc Tamika Date: Sun, 7 Jun 2026 01:11:49 +0000 Subject: [PATCH 2/3] Update dependencies lock --- package-lock.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/package-lock.json b/package-lock.json index 024a4b6..008bfc4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -262,6 +262,9 @@ "arm64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -279,6 +282,9 @@ "arm64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -296,6 +302,9 @@ "ppc64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -313,6 +322,9 @@ "s390x" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -330,6 +342,9 @@ "x64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -347,6 +362,9 @@ "x64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -945,6 +963,9 @@ "arm64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MPL-2.0", "optional": true, "os": [ @@ -966,6 +987,9 @@ "arm64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MPL-2.0", "optional": true, "os": [ @@ -987,6 +1011,9 @@ "x64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MPL-2.0", "optional": true, "os": [ @@ -1008,6 +1035,9 @@ "x64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MPL-2.0", "optional": true, "os": [ From 3cf04f8dc3ce658d857c2662ed408ee2f89a5c96 Mon Sep 17 00:00:00 2001 From: Uoc Tamika Date: Sun, 7 Jun 2026 04:25:58 +0000 Subject: [PATCH 3/3] fix issue testing workflow because codecov error --- .github/workflows/testing.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index d020bd9..5945a4b 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -32,14 +32,11 @@ jobs: - name: Build project run: npm run build - - name: Run test without coverage - run: npm run test - - - name: Run tests with coverage + - name: Run tests coverage run: npm run test:coverage - name: Upload coverage to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage/lcov.info