Skip to content

Bump @intlify/unplugin-vue-i18n from 4.0.0 to 6.0.3 #726

Bump @intlify/unplugin-vue-i18n from 4.0.0 to 6.0.3

Bump @intlify/unplugin-vue-i18n from 4.0.0 to 6.0.3 #726

Workflow file for this run

name: CI
on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '18'
- uses: actions/cache@v1
with:
path: ~/.cache/npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install packages using npm
run: npm ci
- name: Lint using ESLint
run: npm run lint
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '18'
- uses: actions/cache@v1
with:
path: ~/.cache/npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install packages using npm
run: npm ci
- name: Format using Prettier
run: npm run format
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '18'
- uses: actions/cache@v1
with:
path: ~/.cache/npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install packages using npm
run: npm ci
- name: Run tests using Vitest
run: npm test run