diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 63795f76..aeddfcf1 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 cache: 'npm' - run: npm ci - run: npm run lint @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 cache: 'npm' - run: npm ci - run: npm test @@ -53,7 +53,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 registry-url: 'https://registry.npmjs.org' if: ${{ steps.release.outputs.releases_created == 'true' }} @@ -64,6 +64,4 @@ jobs: if: ${{ steps.release.outputs.releases_created == 'true' }} - run: npm exec -c publish-packages - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} if: ${{ steps.release.outputs.releases_created == 'true' }}