add missing index.ts files for each language, and in each translatio… #4659
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- 'release/4.**' | |
- 'epic/**' | |
- 'develop' | |
- 'develop-*' | |
name: Installation | |
jobs: | |
install: | |
name: Build libs and install | |
environment: dev | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.12.1 | |
with: | |
access_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: NPM | |
run: npm ci | |
env: | |
FORCE_COLOR: 2 # Support colors from chalk | |
- name: run installation script | |
run: cd ./scripts/install && ./run.sh install && ./run.sh start |