2020-07-29 23:04:47 +09:00
|
|
|
name: Lint
|
|
|
|
|
2020-08-17 23:36:09 +09:00
|
|
|
on:
|
|
|
|
push:
|
2020-12-03 17:30:14 +09:00
|
|
|
branches:
|
|
|
|
- main
|
2020-08-17 23:36:09 +09:00
|
|
|
pull_request:
|
2020-07-29 23:04:47 +09:00
|
|
|
|
2023-03-12 19:31:13 +09:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-07-29 23:04:47 +09:00
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
name: Lint SourceCode
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-04-01 15:29:51 +09:00
|
|
|
- uses: actions/checkout@v3
|
2020-07-29 23:04:47 +09:00
|
|
|
|
|
|
|
- name: Setup node
|
2022-03-05 15:14:32 +09:00
|
|
|
uses: actions/setup-node@v3
|
2020-07-29 23:04:47 +09:00
|
|
|
with:
|
2022-12-09 18:29:03 +09:00
|
|
|
node-version: 18
|
2021-11-19 15:58:21 +09:00
|
|
|
cache: 'yarn'
|
2020-07-29 23:04:47 +09:00
|
|
|
|
|
|
|
- name: Install
|
2023-03-12 19:24:48 +09:00
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2020-07-29 23:04:47 +09:00
|
|
|
with:
|
|
|
|
toolchain: stable
|
2020-12-01 15:55:19 +09:00
|
|
|
components: rustfmt, clippy
|
2020-07-29 23:04:47 +09:00
|
|
|
|
2022-04-01 15:29:51 +09:00
|
|
|
- name: Cache cargo
|
|
|
|
uses: actions/cache@v3
|
2020-07-29 23:04:47 +09:00
|
|
|
with:
|
2022-04-01 15:29:51 +09:00
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
key: lint-cargo-cache
|
2020-07-29 23:04:47 +09:00
|
|
|
|
|
|
|
- name: 'Install dependencies'
|
2022-04-01 15:29:51 +09:00
|
|
|
run: yarn install --immutable --mode=skip-build
|
2020-07-29 23:04:47 +09:00
|
|
|
|
|
|
|
- name: 'Lint JS/TS'
|
|
|
|
run: yarn lint
|
|
|
|
|
2020-12-01 15:55:19 +09:00
|
|
|
- name: Cargo fmt
|
2020-07-29 23:04:47 +09:00
|
|
|
run: cargo fmt -- --check
|
|
|
|
|
2020-12-01 15:55:19 +09:00
|
|
|
- name: Clippy
|
2021-12-08 13:52:33 +09:00
|
|
|
run: cargo clippy
|
2020-12-01 15:55:19 +09:00
|
|
|
|
2020-07-29 23:04:47 +09:00
|
|
|
- name: Clear the cargo caches
|
|
|
|
run: |
|
|
|
|
cargo install cargo-cache --no-default-features --features ci-autoclean
|
|
|
|
cargo-cache
|