Improve peer review candidate selection with max attempts and better … #6542
This file contains 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: Code Style | |
on: [push] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
code-style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Eslint | |
run: npm run eslint:ci | |
- name: Stylelint | |
run: npm run lint:css | |
- name: Cargo fmt | |
run: cargo fmt --manifest-path services/headless-lms/Cargo.toml --all -- --files-with-diff --check |