Skip to content

feat(translations): update Tamil #738

feat(translations): update Tamil

feat(translations): update Tamil #738

Workflow file for this run

name: ci
on:
push:
branches: [master]
paths-ignore: ["**/README.md"]
pull_request:
branches: [master]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [14]
steps:
- name: Checkout ๐Ÿ›Ž
uses: actions/checkout@v2.3.4
- name: Setup node env ๐Ÿ—
uses: actions/setup-node@v2.4.0
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป
run: yarn
- name: Run linter ๐Ÿ‘€
run: yarn lint
- name: Run tests ๐Ÿ‘€
run: yarn test:unit
โšก