diff --git a/.github/actions/setup-and-test/action.yml b/.github/actions/setup-and-test/action.yml index 0c76481..94c833e 100644 --- a/.github/actions/setup-and-test/action.yml +++ b/.github/actions/setup-and-test/action.yml @@ -7,15 +7,15 @@ runs: using: "composite" steps: - - name: Initial Debug Show working directory and package.json - run: | - pwd && ls -al && cat package.json - shell: bash + # - name: Initial Debug Show working directory and package.json + # run: | + # pwd && ls -al && cat package.json + # shell: bash - - name: Initial Debug, Show git status and remotes - run: | - git --version && git status && git remote -v && git log --oneline --decorate --graph -n 10 - shell: bash + # - name: Initial Debug, Show git status and remotes + # run: | + # git --version && git status && git remote -v && git log --oneline --decorate --graph -n 10 + # shell: bash - name: Checkout code uses: actions/checkout@v4.2.2 @@ -41,10 +41,10 @@ runs: with: version: latest - - name: Debug after pnpm action setup, Show working directory and package.json - run: | - pwd && ls -al && cat package.json - shell: bash + # - name: Debug after pnpm action setup, Show working directory and package.json + # run: | + # pwd && ls -al && cat package.json + # shell: bash - name: Setup CI, Build and Test Package uses: actions/setup-node@v4 @@ -52,10 +52,10 @@ runs: node-version: "lts/*" cache: "pnpm" - - name: Debug post node, Show working directory and package.json - run: | - pwd && ls -al && cat package.json - shell: bash + # - name: Debug post node, Show working directory and package.json + # run: | + # pwd && ls -al && cat package.json + # shell: bash - name: Debug pnpm environment run: | @@ -71,19 +71,19 @@ runs: # run: pnpm help # shell: bash - - name: Debug Show working directory and package.json - run: | - pwd && ls -al && cat package.json - shell: bash + # - name: Debug Show working directory and package.json + # run: | + # pwd && ls -al && cat package.json + # shell: bash - name: Install dependencies run: pnpm install --frozen-lockfile --loglevel debug shell: bash - - name: Debug post install, Show working directory and package.json - run: | - pwd && ls -al && cat package.json - shell: bash + # - name: Debug post install, Show working directory and package.json + # run: | + # pwd && ls -al && cat package.json + # shell: bash - name: Run lint run: | diff --git a/.github/workflows/call-ci-semantic-release-sync.yml b/.github/workflows/call-ci-semantic-release-sync.yml index 8fdb85c..a991c18 100644 --- a/.github/workflows/call-ci-semantic-release-sync.yml +++ b/.github/workflows/call-ci-semantic-release-sync.yml @@ -21,7 +21,7 @@ on: - 'renovate/**' - 'chore/**' - 'test/**' - + pull_request: branches: - main @@ -44,4 +44,8 @@ jobs: # uses: variablesoftware/github-workflows/.github/workflows/ci-semantic-release-sync.yml@38038641148ab8eaa7c9be80d9041a6c8c80641e # No secrets block needed for GITHUB_TOKEN # No additional changes required - \ No newline at end of file + with: + RUN_LINT: 0 + RUN_BUILD: 0 + RUN_TEST: 0 + \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d7a57aa..4c3d7eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## [1.0.3](https://github.com/variablesoftware/github-actions-node-setup-and-test/compare/v1.0.2...v1.0.3) (2025-06-09) + ## [1.0.2](https://github.com/variablesoftware/github-actions-node-setup-and-test/compare/v1.0.1...v1.0.2) (2025-06-06) ## [1.0.1](https://github.com/variablesoftware/github-actions-node-setup-and-test/compare/v1.0.0...v1.0.1) (2025-06-06) diff --git a/package.json b/package.json index 7dcb742..14e7f02 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "github-actions-node-setup-and-test", - "version": "1.0.2", + "version": "1.0.3", "description": "Reusable composite GitHub Action for setup and test steps.", "main": "action.yml", "license": "MIT",