fix: send author-attributed inserts and preserve trailing newline #268
Workflow file for this run
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
| # This workflow will run tests using node and then publish a package to the npm registry when a release is created | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages | |
| name: Node.js Package | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| env: | |
| PNPM_HOME: ~/.pnpm-store | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: ether/etherpad-lite | |
| path: etherpad-lite | |
| - | |
| run: mv etherpad-lite .. | |
| - | |
| uses: actions/checkout@v6 | |
| - uses: actions/cache@v5 | |
| name: Cache pnpm store | |
| with: | |
| path: ${{ env.PNPM_HOME }} | |
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pnpm-store- | |
| - uses: pnpm/action-setup@v6 | |
| name: Install pnpm | |
| with: | |
| run_install: false | |
| - | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - | |
| run: cd ../etherpad-lite && ./bin/installDeps.sh && pnpm link --global | |
| - | |
| run: | | |
| pnpm config set auto-install-peers false | |
| pnpm i | |
| - | |
| run: | | |
| has_testcli_script () { | |
| [[ $(pnpm run | grep "^ test" | wc -l) > 0 ]] | |
| } | |
| if has_testcli_script; then | |
| pnpm run test | |
| else | |
| echo "No test script found" | |
| fi | |
| name: Run tests if available | |
| - | |
| run: pnpm run lint | |
| publish-npm: | |
| if: github.event_name == 'push' | |
| needs: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/cache@v5 | |
| name: Cache pnpm store | |
| with: | |
| path: ${{ env.PNPM_HOME }} | |
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pnpm-store- | |
| - uses: pnpm/action-setup@v6 | |
| name: Install pnpm | |
| with: | |
| run_install: false | |
| - | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| registry-url: https://registry.npmjs.org/ | |
| - name: Only install direct dependencies | |
| run: pnpm config set auto-install-peers false | |
| - | |
| name: Bump version (patch) | |
| run: | | |
| LATEST_TAG=$(git describe --tags --abbrev=0) || exit 1 | |
| NEW_COMMITS=$(git rev-list --count "${LATEST_TAG}"..) || exit 1 | |
| [ "${NEW_COMMITS}" -gt 0 ] || exit 0 | |
| git config user.name 'github-actions[bot]' | |
| git config user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
| pnpm i | |
| pnpm version patch | |
| git push --follow-tags | |
| - | |
| run: pnpm i | |
| - | |
| run: pnpm publish | |
| env: | |
| NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |