Skip to content

chore: Update translations #20802

chore: Update translations

chore: Update translations #20802

Workflow file for this run

name: Build and Test
on:
push:
branches: [main, staging, dev]
pull_request:
branches: [main, staging, dev]
merge_group:
branches: [main, staging, dev]
concurrency:
group: build-test-${{ github.ref }}
cancel-in-progress: true
jobs:
build_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
- name: Install dependencies
run: yarn --immutable
- name: Use xvfb-run on Linux
run: sed -i 's/\(electron-mocha \)/xvfb-run \1/g' package.json
- name: Test
run: yarn test