diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 5a9fdeb..6a4daff 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -10,11 +10,6 @@ jobs: publish-new-version: runs-on: ubuntu-latest if: ${{ github.event.workflow_run.conclusion == 'success' }} - - strategy: - matrix: - node-version: [16.x,18.x,20.x] - steps: - uses: actions/checkout@v3 with: @@ -49,16 +44,6 @@ jobs: run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - - name: Use Node.js ${{ matrix.node-version }} - if: steps.should_release.outcome == 'success' - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run lint - run: npm run build --if-present - run: npm test - name: Push commits to GitHub if: steps.should_release.outcome == 'success'