12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- name: Lint
- on:
- push:
- branches:
- - main
- tags-ignore:
- - '**'
- pull_request:
- jobs:
- lint:
- name: Lint
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - name: Setup node
- uses: actions/setup-node@v3
- with:
- node-version: 16
- cache: 'yarn'
- check-latest: true
- - name: Install
- uses: actions-rs/toolchain@v1
- with:
- toolchain: stable
- profile: minimal
- override: true
- components: rustfmt, clippy
- - name: Cache NPM dependencies
- uses: actions/cache@v3
- with:
- path: node_modules
- key: npm-cache-lint-node@16
- - name: Install dependencies
- run: yarn install --immutable --network-timeout 300000
- - name: ESLint
- run: yarn lint
- - name: Cargo fmt
- run: cargo fmt -- --check
- - name: Clippy
- run: cargo clippy
|