diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 87f31488..c5c30ff8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ jobs: # Setup .npmrc file to publish to NPM - uses: actions/setup-node@v4 with: - node-version: "19.x" + node-version: "20.x" registry-url: "https://registry.npmjs.org" - run: npm ci - run: npm run build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f3562def..50d207bd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [19.x] + node-version: [20.x] steps: - uses: actions/checkout@v4