From c03d2069857ee45cc19d306eea391d11a0c0da98 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Wed, 6 May 2026 14:02:47 -0700 Subject: [PATCH 1/7] Update publish.yml to add id-token permission --- .github/workflows/publish.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2ceafd7..954d389 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,6 +6,7 @@ on: permissions: contents: read + id-token: write jobs: publish-npm: @@ -22,6 +23,4 @@ jobs: - run: npm version ${TAG_NAME} --git-tag-version=false env: TAG_NAME: ${{ github.event.release.tag_name }} - - run: npm whoami; npm --ignore-scripts publish - env: - NODE_AUTH_TOKEN: ${{secrets.npm_token}} + - run: npm --ignore-scripts publish --provenance From 8fe6d1793484d5ff69fa0b03bf0dabc6977b2313 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Fri, 8 May 2026 11:51:49 -0700 Subject: [PATCH 2/7] Update publish.yml --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 954d389..16e6c93 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm - run: npm ci From 304f3da8f8c7d6b6e4b6882b3ca304c9b7ec21b5 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Fri, 8 May 2026 12:04:57 -0700 Subject: [PATCH 3/7] Change Node.js version from 24 to 20 in workflow --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 16e6c93..dc3f212 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 24 + node-version: 20 registry-url: https://registry.npmjs.org/ cache: npm - run: npm ci From c3753e3782f61fc4ea6b176825e129de5d3c40e3 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Mon, 11 May 2026 10:34:05 -0700 Subject: [PATCH 4/7] Update nodejs.yml --- .github/workflows/nodejs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 697d01c..c9875e3 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -9,11 +9,11 @@ jobs: build: runs-on: macos-latest steps: - - uses: actions/checkout@v2 - - name: Use Node.js 20.x + - uses: actions/checkout@v6 + - name: Use Node.js 24.x uses: actions/setup-node@v6 with: - node-version: 20.x + node-version: 24.x - name: npm install, build, and test run: | npm install From a9db6d654f0e95d74e32a3155096933441cdf6b0 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Mon, 11 May 2026 10:34:32 -0700 Subject: [PATCH 5/7] Update GitHub Actions to use Node.js 24 and latest actions --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index dc3f212..f8b4791 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,10 +12,10 @@ jobs: publish-npm: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: - node-version: 20 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm - run: npm ci From 7a8a608126606996c311851d05584c2b51e4435c Mon Sep 17 00:00:00 2001 From: Grace Park Date: Mon, 11 May 2026 11:08:30 -0700 Subject: [PATCH 6/7] Update nodejs.yml --- .github/workflows/nodejs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index c9875e3..0e1d073 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -7,7 +7,7 @@ permissions: jobs: build: - runs-on: macos-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - name: Use Node.js 24.x From 9ef7c84398e8567deef0512e34f740551eb0c0af Mon Sep 17 00:00:00 2001 From: Grace Park Date: Mon, 11 May 2026 11:18:57 -0700 Subject: [PATCH 7/7] Update karma.config.cjs --- karma.config.cjs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/karma.config.cjs b/karma.config.cjs index 8d01a0f..7d5a61a 100644 --- a/karma.config.cjs +++ b/karma.config.cjs @@ -11,7 +11,13 @@ module.exports = function (config) { port: 9876, colors: true, logLevel: config.LOG_INFO, - browsers: ['ChromeHeadless'], + browsers: ['ChromeHeadlessNoSandbox'], + customLaunchers: { + ChromeHeadlessNoSandbox: { + base: 'ChromeHeadless', + flags: ['--no-sandbox'] + } + }, autoWatch: false, singleRun: true, concurrency: Infinity