-
-
Notifications
You must be signed in to change notification settings - Fork 221
37 lines (31 loc) · 905 Bytes
/
i18n.yaml
File metadata and controls
37 lines (31 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: i18n
on:
push:
branches:
- 'master' # Default branch
- 'feature-**' # Feature branches
pull_request:
branches:
- 'master' # Default branch
- 'feature-**' # Feature branches
permissions: {}
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # tag=v6.0.2
with:
persist-credentials: false
- name: Set up NodeJs
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # tag=v6.4.0
with:
node-version: '20'
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Check for Translations
run: |
mv src/assets/scss/vendors/chart.js src/assets/scss/vendors/chart.js.skip
npm run vue-i18n-extract
continue-on-error: false