chore(deps): update dependency @types/md5 to v2.3.5 (#416) #150
This file contains 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: Action CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build and Update Mappings | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PAT }} | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- name: Install Dependencies | |
run: pnpm i --frozen-lockfile | |
- name: Install Build Tool | |
run: pnpm i -g @vercel/ncc | |
- name: Build | |
run: pnpm run build | |
- name: Update Mappings | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: '[skip ci] Update mappings' | |
file_pattern: 'dist/*.js dist/*.js.map dist/*.cjs' | |
commit_user_name: r2-action-bot[bot] | |
commit_user_email: 118486773+r2-action-bot[bot]@users.noreply.github.com | |
commit_author: r2-action-bot[bot] <118486773+r2-action-bot[bot]@users.noreply.github.com> |