chore(deps): update dependency vue-i18n to v10.0.4 #1302
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: Build | |
on: | |
push: | |
branches: | |
- "**" | |
- "!main" | |
pull_request: | |
branches: | |
- "**" | |
- "!main" | |
jobs: | |
CI: | |
runs-on: windows-latest | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: lint | |
run: pnpm lint | |
- name: build | |
run: pnpm build |