feat(unplugin-vue-i18n): support compatibility i18n custom blocks for legacy vue-i18n v8.x #817
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: Test | |
on: | |
push: | |
branches-ignore: | |
- gh-pages | |
pull_request: | |
branches-ignore: | |
- gh-pages | |
types: | |
- opened | |
- synchronize | |
- reopened | |
permissions: | |
contents: read | |
env: | |
CI: true | |
jobs: | |
test: | |
name: 'Test on Node.js ${{ matrix.node }} OS: ${{matrix.os}}' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [18.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'yarn' | |
- name: Install | |
run: yarn --immutable | |
- name: Test | |
run: yarn test |