Merge pull request #581 from Manjit73/add-translator-manjit #804
This file contains hidden or 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
| name: CI-Production | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: latest | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm run fresh-install | |
| - name: Install Playwright libraries | |
| run: sudo npx playwright install-deps chromium | |
| - name: Build libraries | |
| run: pnpm run build | |
| - name: Allow AppArmor sandbox to work on Ubuntu | |
| run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns | |
| # A safer option to fix sandboxes if Chrome is installed on a local client: | |
| # echo -e "\nexport CHROME_DEVEL_SANDBOX=/opt/google/chrome/chrome-sandbox" >> ~/.bashrc | |
| - name: Start server | |
| run: pnpm run workflow-test | |
| - name: Test server response | |
| run: pnpm test | |
| - name: Stop server after testing | |
| run: pnpm stop |