chore(dependencies): update dependency @intlify/unplugin-vue-i18n to v6 #141
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: Ensures the PR doesn't break the build | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- unlocked | |
workflow_dispatch: | |
jobs: | |
pr-check: | |
name: "PR Check" | |
runs-on: "ubuntu-latest" | |
timeout-minutes: 10 | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: "Bump Node.js to v23" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
check-latest: true | |
- name: "Install dependencies" | |
run: | | |
npm ci || npm run i | |
- name: "Build the code" | |
run: npm run build | |
- name: "Lint check" | |
run: npm run lint |