Skip to content

add info about tempo #595

add info about tempo

add info about tempo #595

Workflow file for this run

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