Skip to content

feat: added more aqua tools #500

feat: added more aqua tools

feat: added more aqua tools #500

Workflow file for this run

name: autofix.ci
on:
workflow_call:
pull_request:
# push:
# branches: ["main"]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
MISE_TRUSTED_CONFIG_PATHS: ${{ github.workspace }}
MISE_EXPERIMENTAL: 1
RUST_BACKTRACE: 1
NPM_CONFIG_FUND: false
jobs:
nightly:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
shared-key: test-ubuntu-latest
save-if: false
- run: |
cargo build --all-features
echo "$PWD/target/debug" >> "$GITHUB_PATH"
- run: mise install
- run: npm install
- run: mise run render
- run: mise run lint-fix
- run: mise run snapshots
- uses: autofix-ci/[email protected]
if: ${{ always() }}