chore(deps-dev): Bump @semantic-release/github from 12.0.5 to 12.0.6 … #3768
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Tests" | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: read | |
| jobs: | |
| UnitTests: | |
| strategy: | |
| matrix: | |
| # lowest version here should also be in `engines` field | |
| node_version: [20, "lts/*", "latest"] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node_version }} | |
| check-latest: true | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Build 🗜️ | |
| run: npm run build | |
| - name: Run Unit Tests 👩🏽💻 | |
| run: npm run test:unit | |
| - name: Run Spec Tests 👩🏽💻 | |
| run: npm run test:specs | |
| - name: Run CJS Tests 👩🏽💻 | |
| run: npm run test:cjs | |
| OtherTests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "lts/*" | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Build 🗜️ | |
| run: npm run build | |
| - name: Run UMD Tests 👩🏽💻 | |
| run: npm run test:umd | |
| - name: Run Types Tests 👩🏽💻 | |
| run: npm run test:types | |
| - name: Lint ✨ | |
| run: npm run test:lint | |
| Release: | |
| permissions: | |
| contents: write # to be able to publish a GitHub release | |
| # issues: write # to be able to comment on released issues | |
| # pull-requests: write # to be able to comment on released pull requests | |
| id-token: write # to enable use of OIDC for trusted publishing and npm provenance | |
| needs: [UnitTests, OtherTests] | |
| if: | | |
| github.ref == 'refs/heads/master' && | |
| github.event.repository.fork == false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "lts/*" | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Build 🗜️ | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| export SEMANTIC_RELEASE_NEXT_VERSION=$(npx semantic-release --no-ci --dry-run | grep -oP 'The next release version is \K[0-9]+\.[0-9]+\.[0-9]+') | |
| echo "Next Version: $SEMANTIC_RELEASE_NEXT_VERSION" | |
| npm run build | |
| if ! git diff --quiet; then | |
| git config --global user.email "<>" | |
| git config --global user.name "MarkedJS bot" | |
| git commit -am "🗜️ build v$SEMANTIC_RELEASE_NEXT_VERSION [skip ci]" | |
| fi | |
| - name: Release 🎉 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: npx semantic-release |