Skip to content

Remove change npm version from storybook action #5555

Remove change npm version from storybook action

Remove change npm version from storybook action #5555

Workflow file for this run

name: Code Style
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
code-style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install npm dependencies
run: npm ci
- name: Eslint
run: npm run eslint:ci
- name: Stylelint
run: npm run lint:css
- name: Update rust to get edition 2021 support
run: rustup update stable
- name: Cargo fmt
run: cargo fmt --manifest-path services/headless-lms/Cargo.toml --all -- --files-with-diff --check