git.delta.rocks / unique-network / refs/commits / 950d276ffd36

difftreelog

Merge pull request #888 from UniqueNetwork/ci/forbid-warnings

Yaroslav Bolyukin2023-08-15parents: #e7df43a #4bcabac.patch.diff
in: master
Forbid warnings

1 file changed

modified.github/workflows/codestyle.ymldiffbeforeafterboth
44 - name: Install modules44 - name: Install modules
45 run: cd tests && yarn45 run: cd tests && yarn
46 - name: Run ESLint46 - name: Run ESLint
47 run: cd tests && yarn eslint --ext .ts,.js src/47 run: cd tests && yarn eslint --ext .ts,.js --max-warnings=0 src/
4848
49 clippy:49 clippy:
50 if: ${{ false }}
51 runs-on: [ self-hosted-ci ]50 runs-on: [ self-hosted-ci ]
52 steps:51 steps:
53 - uses: actions/checkout@v3.1.052 - uses: actions/checkout@v3.1.0
62 targets: wasm32-unknown-unknown61 targets: wasm32-unknown-unknown
63 components: rustfmt, clippy62 components: rustfmt, clippy
64 - name: Run cargo check63 - name: Run cargo check
65 run: cargo clippy -- -Dwarnings64 run: cargo clippy --features=quartz-runtime,unique-runtime,try-runtime,runtime-benchmarks --tests -- -Dwarnings
65 env:
66 SKIP_WASM_BUILD: '1'
6667