File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 2525 uses : actions/setup-node@v1
2626 with :
2727 node-version : ${{ matrix.node }}
28+ - name : Get yarn cache directory path
29+ id : yarn-cache-dir-path
30+ run : echo "::set-output name=dir::$(yarn cache dir)"
31+ - uses : actions/cache@v2
32+ id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
33+ with :
34+ path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
35+ key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
36+ restore-keys : |
37+ ${{ runner.os }}-yarn-
2838 - name : Install
2939 run : yarn install
3040 - name : Test
Original file line number Diff line number Diff line change 11
2+ ## v9.0.0-beta.8 (2020-11-18)
3+
4+ #### :bug : Bug Fixes
5+ * [ #192 ] ( https://github.com/intlify/vue-i18n-next/pull/192 ) fix: cannot locale change for specified i18n custom blocks only ([ @kazupon ] ( https://github.com/kazupon ) )
6+
7+ #### Committers: 1
8+ - kazuya kawaguchi ([ @kazupon ] ( https://github.com/kazupon ) )
9+
10+
211## v9.0.0-beta.7 (2020-11-17)
312
413#### :star : Features
Original file line number Diff line number Diff line change 11{
22 "name" : " vue-i18n" ,
33 "description" : " Internationalization plugin for Vue.js" ,
4- "version" : " 9.0.0-beta.7 " ,
4+ "version" : " 9.0.0-beta.8 " ,
55 "author" : {
66 "name" : " kazuya kawaguchi" ,
77
You can’t perform that action at this time.
0 commit comments