From 155dff842771a155befd81c8d89bb83f98e851f6 Mon Sep 17 00:00:00 2001 From: Minionguyjpro Date: Mon, 30 Sep 2024 16:21:09 +0200 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d94f107..29f3849 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,19 +23,12 @@ jobs: with: node-version-file: .node-version cache: npm - - - run: | + + - name: Test JavaScript code and compile + run: | npm ci npm run all - - name: Run semantic-release - # This process will run `ncc`, commit files, push a Git commit, and release to GitHub and npmjs. - run: | - npx semantic-release - env: - GITHUB_TOKEN: ${{ secrets.PAT_TO_PUSH }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - name: Setup GitHub Actions Bot run: | git config --local user.email "github-actions[bot]@users.noreply.github.com" @@ -49,16 +42,6 @@ jobs: commit_message: "Update CJS script" if: ${{ github.event_name != 'pull_request' }} - - name: Commit and Push Changes (PR) - uses: devops-infra/action-commit-push@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - commit_prefix: "[AUTO]" - commit_message: "Update CJS script" - target_branch: ${{ github.ref }} - if: ${{ github.event_name == 'pull_request' }} - - test: needs: build runs-on: windows-latest