mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
* add denoise effect * denoise prototype * improve rnnoise / add comments * revert some unnecessary changes * Add noise suppressor worklet * Send notification on failure * address code review * additional comments * additional comments * update package-lock * fix rebase changes * update rnnoise npm package * sort lang * adjust webpack performance hint * address code review * address code review * switch ns files to typescript * fix null-loader version, lang sort * fix lint * missing import * fix lint / address code review * use single action for ns state * move activation to thunk * increase node heap * copy noise-suppressor to deploy * fix ts lint
26 lines
742 B
YAML
26 lines
742 B
YAML
name: Simple CI
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
run-ci:
|
|
name: Build Frontend
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '16.x'
|
|
- run: npm install
|
|
- name: Check git status
|
|
run: git status
|
|
- name: Normalize lang files to ensure sorted
|
|
run: npm run lang-sort
|
|
- name: Check if the git repository is clean
|
|
run: $(exit $(git status --porcelain --untracked-files=no | head -255 | wc -l)) || (echo "Dirty git tree"; git diff; exit 1)
|
|
- run: npm run lint
|
|
- run: for file in lang/*.json; do npx --yes jsonlint -q $file || exit 1; done
|
|
- env:
|
|
NODE_OPTIONS: '--max-old-space-size=4096'
|
|
run: make
|