diff --git a/.github/workflows/publish-npm-package.yml b/.github/workflows/publish-npm-package.yml index ca73e4f..9629ebe 100644 --- a/.github/workflows/publish-npm-package.yml +++ b/.github/workflows/publish-npm-package.yml @@ -19,4 +19,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npx semantic-release \ No newline at end of file + run: npx semantic-release@24.2.3 --plugins @semantic-release/git@10.0.0 \ No newline at end of file diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 70dc247..96c9d53 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -4,22 +4,17 @@ on: pull_request_target: branches: - master - jobs: validate-pull-request: runs-on: ubuntu-latest - steps: - name: Checkout repository uses: actions/checkout@v4 - - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '22.x' - - name: Install dependencies run: npm ci - - name: Run tests run: npm test