jiti-meet/.github/workflows/ci.yml

26 lines
680 B
YAML
Raw Normal View History

name: Simple CI
2020-03-23 20:15:49 +00:00
on: [pull_request]
jobs:
run-ci:
name: Build Frontend
2020-03-23 20:15:49 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.x'
2020-03-23 20:15:49 +00:00
- run: npm install
- name: Check git status
run: git status
2022-01-20 11:44:08 +00:00
- name: Normalize lang files to ensure sorted
run: npm run lang-sort
- name: Check git diff
run: git diff
- name: Check if the git repository is clean
run: exit $( git status --porcelain --untracked-files=no | head -255 | wc -l )
2020-03-23 20:15:49 +00:00
- run: npm run lint
- run: for file in lang/*.json; do npx --yes jsonlint -q $file || exit 1; done
- run: make