fix(publish): grant token contents+PR write so the bump PR step can run #1102
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: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Unit Tests | |
| strategy: | |
| matrix: | |
| node-version: | |
| - 22.x | |
| os: | |
| - windows-latest | |
| - macos-latest | |
| - ubuntu-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: git checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - run: npm ci | |
| - run: npm run build --if-present | |
| - env: | |
| NODE_OPTIONS: "--max_old_space_size=4096" | |
| run: npm test | |
| - name: Archive npm failure logs | |
| uses: actions/upload-artifact@v4 | |
| if: failure() && runner.os == 'Windows' | |
| with: | |
| name: npm-logs | |
| path: C:\npm\cache\_logs\ | |
| - name: Calculate code coverage | |
| run: npm run coverage | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| flag-name: ${{ matrix.os }} | |
| parallel: true | |
| fail-on-error: false | |
| e2e: | |
| name: Browser E2E (Chromium) | |
| runs-on: ubuntu-latest | |
| needs: | |
| - build | |
| steps: | |
| - name: git checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js 22.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.x | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build packages (dep order) | |
| run: npm run build | |
| - name: Build UMD bundles | |
| run: npm run -w markdown-transform-e2e build:bundles | |
| - name: Get Playwright version | |
| id: playwright-version | |
| run: | | |
| echo "version=$(node -p "require('./e2e/node_modules/@playwright/test/package.json').version")" >> $GITHUB_OUTPUT | |
| - name: Cache Playwright browsers | |
| id: playwright-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/ms-playwright | |
| key: playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }} | |
| - name: Install Playwright Chromium | |
| if: steps.playwright-cache.outputs.cache-hit != 'true' | |
| run: npx --no-install --prefix e2e playwright install --with-deps chromium | |
| - name: Install Playwright system deps only (cache hit) | |
| if: steps.playwright-cache.outputs.cache-hit == 'true' | |
| run: npx --no-install --prefix e2e playwright install-deps chromium | |
| - name: Run browser e2e tests | |
| run: npm test -w markdown-transform-e2e -- --reporter=list | |
| - name: Upload Playwright report on failure | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: playwright-report | |
| path: e2e/playwright-report | |
| retention-days: 7 | |
| notify: | |
| needs: | |
| - build | |
| name: Code Coverage | |
| if: ${{ success() }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Coveralls Finished | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| parallel-finished: true | |
| fail-on-error: false |