Chore(deps-dev): Bump i18n-jsautotranslate from 3.11.11 to 3.12.0 #4
Workflow file for this run
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: Copy translate.js from node_modules to assets/lib | |
on: | |
pull_request: | |
types: | |
- closed | |
paths: | |
- 'package.json' | |
- 'pnpm-lock.yaml' | |
jobs: | |
update: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: pnpm/action-setup@v4 | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Copy translate.js | |
run: pnpm cp | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
branch: main | |
commit_user_name: Cell[bot] | |
commit_user_email: lrhx@users.noreply.github.com | |
commit_author: Cell[bot] <lrhx@users.noreply.github.com> | |
commit_message: ':arrow_up: Chore(deps): update components version' |