build(deps): bump vue-i18n from 11.0.1 to 11.1.0 #399
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: Pull Request Validation | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: "22.x" | |
- name: Cache dependencies | |
uses: actions/[email protected] | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Restore Cache Card List | |
uses: actions/cache/[email protected] | |
with: | |
path: data/default-cards.json | |
key: default-cards.json-${{ github.run_id }} | |
restore-keys: | | |
default-cards.json- | |
- run: npm ci | |
- run: npm run cards | |
- run: npm run build | |
- run: npm run lint | |
- run: npm run test |