fix: get 20 items per page for overflow on large screens #216
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: Bump version | |
| on: | |
| push: | |
| branches: | |
| - "dev" | |
| jobs: | |
| bump-version: | |
| runs-on: ${{ matrix.os }} | |
| outputs: | |
| current-version: ${{ steps.version-bump.outputs.newTag }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node: [20] | |
| steps: | |
| - name: Checkout π | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Setup node env π | |
| uses: actions/setup-node@v4.0.0 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| check-latest: true | |
| - name: Cache node_modules π¦ | |
| uses: actions/cache@v4.2.2 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: Install dependencies π¨π»βπ» | |
| run: npm ci --prefer-offline --no-audit | |
| - name: cat package.json π | |
| run: cat ./package.json | |
| - name: Automated Version Bump β« | |
| id: version-bump | |
| uses: phips28/gh-action-bump-version@master | |
| with: | |
| tag-prefix: "v" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: cat package.json π | |
| run: cat ./package.json | |
| - name: Output Step π | |
| env: | |
| NEW_TAG: ${{ steps.version-bump.outputs.newTag }} | |
| run: echo "new tag $NEW_TAG" |