From 85ef3ae455fe791a9f330f3790f5a0d296e8f2ed Mon Sep 17 00:00:00 2001 From: mdoleh Date: Thu, 26 Oct 2023 14:09:48 -0700 Subject: [PATCH 1/2] Use Node 18 on publish workflow --- .github/workflows/npmpublish.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index f39e737..2e48c24 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 18 - run: npm install - run: npm run lint - run: npm run cover @@ -26,13 +26,12 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 18 registry-url: https://registry.npmjs.org/ - run: npm install - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - # publish-gpr: # needs: build # runs-on: ubuntu-latest From 1a6d273e6d80cb3125365c903601c7a147dbf8b4 Mon Sep 17 00:00:00 2001 From: mdoleh Date: Thu, 26 Oct 2023 14:16:18 -0700 Subject: [PATCH 2/2] one more just in case --- .github/workflows/npmpublish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index 2e48c24..2d199cb 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -39,7 +39,7 @@ jobs: # - uses: actions/checkout@v2 # - uses: actions/setup-node@v1 # with: -# node-version: 12 +# node-version: 18 # registry-url: https://npm.pkg.github.com/ # - run: npm ci # - run: npm publish