fix: update dependency @dword-design/base to v16 #869
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
| jobs: | |
| build: | |
| if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| uses: rokroskar/[email protected] | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| lfs: true | |
| ref: ${{ github.event.pull_request.head.repo.full_name == github.repository && | |
| github.event.pull_request.head.ref || '' }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| check-latest: true | |
| node-version: 20 | |
| - run: corepack enable | |
| - run: git config --global user.email "[email protected]" | |
| - run: git config --global user.name "GitHub Actions" | |
| - run: pnpm install --frozen-lockfile | |
| - env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: pnpm test | |
| - if: failure() | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: Image Snapshot Diffs | |
| path: "**/__image_snapshots__/__diff_output__" | |
| - uses: codecov/codecov-action@v3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - run: pnpm checkUnknownFiles | |
| - env: | |
| GITHUB_REPOSITORY: ${{ secrets.GITHUB_REPOSITORY }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| name: Push changed files | |
| run: pnpm dw-ci push-changed-files | |
| - env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| if: github.ref == 'refs/heads/master' | |
| name: Release | |
| run: pnpm semantic-release | |
| name: build | |
| on: | |
| pull_request: {} | |
| push: | |
| branches: | |
| - master |