1234567891011121314151617181920212223242526272829303132333435363738394041 |
- name: Lint
- on:
- push:
- branches:
- - main
- tags-ignore:
- - '**'
- pull_request:
- concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
- cancel-in-progress: true
- jobs:
- lint:
- name: Lint
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - name: Setup node
- uses: actions/setup-node@v3
- with:
- node-version: 18
- cache: 'yarn'
- - name: Install
- uses: dtolnay/rust-toolchain@stable
- with:
- components: clippy, rustfmt
- - name: Install dependencies
- run: yarn install
- - name: ESLint
- run: yarn lint
- - name: Cargo fmt
- run: cargo fmt -- --check
- - name: Clippy
- run: cargo clippy
|