Remove badges and code qlty #109
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
| name: Publish PR preview | |
| on: | |
| pull_request: | |
| types: | |
| - synchronize | |
| - opened | |
| jobs: | |
| preview: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 23 | |
| - name: Cache dependencies | |
| id: cache-dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: node_modules | |
| key: node_modules-${{ hashFiles('package-lock.json') }} | |
| - name: Install dependencies | |
| if: steps.cache-dependencies.outputs.cache-hit != 'true' | |
| run: npm ci | |
| - name: Build package | |
| run: npm run build | |
| - name: Prepare release | |
| run: |- | |
| cp LICENSE README.md build/ | |
| cd build | |
| find . -type f -path '*/*\.js.map' -exec sed -i -e "s~../src~src~" {} + | |
| sed -i -e "s~\"version\": \"0.0.0-dev\"~\"version\": \"${GITHUB_REF##*/}\"~" package.json | |
| sed -i -e "s~\./build~.~" package.json | |
| sed -i -e "s~./src~.~" package.json | |
| - name: Publish preview | |
| run: |- | |
| npx pkg-pr-new publish \ | |
| --compact --comment=update \ | |
| ./build |