70 lines
1.6 KiB
YAML
70 lines
1.6 KiB
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint SourceCode
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16
|
|
check-latest: true
|
|
cache: 'yarn'
|
|
|
|
- name: Install
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
profile: default
|
|
override: true
|
|
components: rustfmt, clippy
|
|
|
|
- name: Generate Cargo.lock
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: generate-lockfile
|
|
|
|
- name: Cache cargo registry
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cargo/registry
|
|
key: lint-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Cache cargo index
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cargo/git
|
|
key: lint-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Cache NPM dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: node_modules
|
|
key: lint-${{ hashFiles('yarn.lock') }}
|
|
|
|
- name: 'Install dependencies'
|
|
run: yarn install --frozen-lockfile --registry https://registry.npmjs.org --network-timeout 300000
|
|
|
|
- name: 'Lint JS/TS'
|
|
run: yarn lint
|
|
|
|
- name: Cargo fmt
|
|
run: cargo fmt -- --check
|
|
|
|
- name: Clippy
|
|
run: cargo clippy
|
|
|
|
- name: Clear the cargo caches
|
|
run: |
|
|
cargo install cargo-cache --no-default-features --features ci-autoclean
|
|
cargo-cache
|