This repository was archived by the owner on Dec 4, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +48
-572
lines changed
Expand file tree Collapse file tree 6 files changed +48
-572
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Test
2+ on :
3+ push :
4+ branches-ignore :
5+ - gh-pages
6+ pull_request :
7+ env :
8+ CI : true
9+
10+ jobs :
11+ test :
12+ name : " Test on Node.js ${{ matrix.node }} OS: ${{matrix.os}}"
13+ runs-on : ${{ matrix.os }}
14+ strategy :
15+ matrix :
16+ os : [ubuntu-latest]
17+ node : [10, 12, 14]
18+ steps :
19+ - name : Checkout
20+ uses : actions/checkout@v2
21+ - name : Setup Node.js ${{ matrix.node }}
22+ uses : actions/setup-node@v1
23+ with :
24+ node-version : ${{ matrix.node }}
25+ - name : Install
26+ run : yarn install
27+ - name : Test
28+ run : yarn test
Original file line number Diff line number Diff line change 1+
2+ ## v0.2.0 (2020-05-11)
3+
4+ #### :star : Features
5+ * [ #9 ] ( https://github.com/kazupon/vue-i18n-jest/pull/9 ) Feature add locale import ([ @charlybrown03 ] ( https://github.com/charlybrown03 ) )
6+
7+ #### Committers: 1
8+ - Carlos Moreno ([ @charlybrown03 ] ( https://github.com/charlybrown03 ) )
9+
110<a name =" 0.1.1 " ></a >
211## [ 0.1.1] ( https://github.com/kazupon/vue-i18n-jest/compare/v0.1.0...v0.1.1 ) (2019-11-15)
312
Original file line number Diff line number Diff line change 11# :globe_with_meridians : vue-i18n-jest
22
33[ ![ npm] ( https://img.shields.io/npm/v/vue-i18n-jest.svg )] ( https://www.npmjs.com/package/vue-i18n-jest )
4- [ ![ CircleCI] ( https://circleci.com/gh/kazupon/vue-i18n-jest/tree/master.svg?style=svg )] ( https://circleci.com/gh/kazupon/vue-i18n-jest/tree/master )
54[ ![ codecov] ( https://codecov.io/gh/kazupon/vue-i18n-jest/branch/master/graph/badge.svg )] ( https://codecov.io/gh/kazupon/vue-i18n-jest )
65
76vue-jest wrapper for i18n custom blocks
Original file line number Diff line number Diff line change 11{
22 "name" : " vue-i18n-jest" ,
33 "description" : " vue-jest wrapper for i18n custom blocks" ,
4- "version" : " 0.1.1 " ,
4+ "version" : " 0.2.0 " ,
55 "author" : {
66 "name" : " kazuya kawaguchi" ,
77
You can’t perform that action at this time.
0 commit comments