chore(deps): update dependency react-dom to v19.2.3 (#204) #236
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: Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - next | |
| - next-major | |
| - beta | |
| - alpha | |
| - '*.x' | |
| permissions: | |
| contents: read | |
| jobs: | |
| release: | |
| name: Releasing | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| id-token: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install dependencies | |
| run: npm clean-install | |
| - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies | |
| run: npm audit signatures | |
| - name: Test and building | |
| run: | | |
| npm run lint | |
| npm run build | |
| npm test | |
| - name: Installing release dependencies | |
| run: | | |
| npm i -D @qiwi/multi-semantic-release @semantic-release/changelog @semantic-release/git | |
| - name: Semantic release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: npx multi-semantic-release |