chore(deps): update dependency @fluencelabs/aqua-lib to v0.12.1 #757
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
push: | |
branches: | |
- "master" | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: "cargo nextest" | |
runs-on: builder | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Rust toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Setup marine | |
uses: fluencelabs/setup-marine@v1 | |
- name: Install cargo-nextest | |
uses: baptiste0928/[email protected] | |
with: | |
crate: cargo-nextest | |
version: 0.9.22 | |
- name: Build aqua-ipfs | |
working-directory: ./service | |
run: ./build.sh | |
- name: Run cargo nextest | |
working-directory: ./service | |
env: | |
NEXTEST_TEST_THREADS: 10 | |
run: cargo nextest run --release --all-features --no-fail-fast | |
- name: Run cargo clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: -Z unstable-options --all --manifest-path service/Cargo.toml | |
npm-build: | |
name: "Check if npm run build works" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
registry-url: "https://registry.npmjs.org" | |
# cache-dependency-path: "aqua/package-lock.json" | |
# cache: "npm" | |
- name: Setup fcli | |
uses: fluencelabs/setup-fluence@v1 | |
with: | |
version: stable | |
- run: npm ci | |
working-directory: aqua | |
- run: npm run build | |
working-directory: aqua | |
lints: | |
name: Lints | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Setup rust toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Run cargo fmt | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all --manifest-path service/Cargo.toml -- --check |