Skip to content

fix: fix default language loading #173

fix: fix default language loading

fix: fix default language loading #173

Workflow file for this run

name: Default CI
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
# - name: Install dependencies
# run: npm ci
- name: Lint
run: npm run lint
# - name: Test
# run: npm run test
# - name: Build
# run: npm run build
# - name: i18n_extract
# run: npm run i18n_extract
# - name: Coverage
# uses: codecov/codecov-action@v3