Skip to content

Translations

Translations #541

Workflow file for this run

name: build-and-test
on:
pull_request:
push:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test
# env:
# VERBOSE: '1'
- name: Lint
run: yarn lint