add info about tempo #595
Workflow file for this run
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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - '*CI*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| frontend_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: True | |
| - name: Install deps | |
| run: npm ci | |
| - name: Prepare Google Sandbox | |
| run: sudo chown root /opt/google/chrome/chrome-sandbox && sudo chmod 4755 /opt/google/chrome/chrome-sandbox | |
| - name: Run frontend tests (and Disable AppArmor for Chrome) | |
| run: env CHROME_DEVEL_SANDBOX=/opt/google/chrome/chrome-sandbox grunt test_no_watch | |
| eslint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: True | |
| - name: Install deps | |
| run: npm ci | |
| - name: Run eslint | |
| run: grunt eslint |