Skip to content

Export locales so consumers can set language without duplicating code #207

Export locales so consumers can set language without duplicating code

Export locales so consumers can set language without duplicating code #207

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .nvmrc
run: echo NVMRC=`cat .nvmrc` >> $GITHUB_ENV
- name: Setup Node.js
uses: actions/setup-node@v2.4.1
with:
node-version: ${{ env.NVMRC }}
- name: Install packages
run: npm i
- name: Check formatter
run: npm run prettier:check
- name: Check linter
run: npm run lint
- name: Check tests
run: npm run test
- name: Check build
run: npm run build