Skip to content

6585 - V2 settings filters #14276

6585 - V2 settings filters

6585 - V2 settings filters #14276

name: check translations
on:
push:
branches:
- production
- development
- staging
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check_translations:
runs-on: ubuntu-20.04
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.6-amd64
ports:
- 9200/tcp
options: -e="discovery.type=single-node" --health-cmd="curl http://localhost:9200/_cluster/health" --health-interval=10s --health-timeout=5s --health-retries=10
steps:
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.8.0
with:
mongodb-version: 4.2.6
mongodb-replica-set: test-rs
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Cache node modules
uses: actions/cache@v2
with:
path: ./node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
- name: install dependencies
run: yarn install
- run: yarn blank-state
env:
DBHOST: localhost:27017
ELASTICSEARCH_URL: http://localhost:${{ job.services.elasticsearch.ports[9200] }}
- run: yarn production-build
env:
DBHOST: localhost:${{ job.services.mongodb.ports[27017] }}
ELASTICSEARCH_URL: http://localhost:${{ job.services.elasticsearch.ports[9200] }}
- run: cd prod; yarn update-translations-db
env:
NODE_ENV: production
DBHOST: localhost:${{ job.services.mongodb.ports[27017] }}
- run: yarn check-translations
env:
DBHOST: localhost:${{ job.services.mongodb.ports[27017] }}