Skip to content

Fix miscellaneous tests that sometimes fail #8107

Fix miscellaneous tests that sometimes fail

Fix miscellaneous tests that sometimes fail #8107

Workflow file for this run

name: Code Style
permissions: read-all
on:
push:
branches:
- master
- canary
paths-ignore:
- "docs/**"
pull_request:
branches:
- master
paths-ignore:
- "docs/**"
env:
CARGO_TERM_COLOR: always
jobs:
code-style:
permissions:
contents: read
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node-pnpm
- name: Install pnpm dependencies
run: pnpm install --frozen-lockfile
- name: Run actionlint
uses: docker://rhysd/actionlint:latest
with:
args: -color
- name: Eslint
run: pnpm run eslint:ci
- name: Stylelint
run: pnpm run lint:css
- name: Cargo fmt
run: cargo fmt --manifest-path services/headless-lms/Cargo.toml --all -- --files-with-diff --check