linux pyrelease aarch64 path to pyultima manifest. Also removing unus… #116
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: Rust Frontend Lint Test | |
on: | |
#push: | |
# branches: [master] | |
pull_request: | |
branches: [master] | |
paths: | |
- 'ultibi/**' | |
- 'frtb_engine/**' | |
- 'frontend/**' | |
- '.github/workflows/lint-test-rust-frontend.yaml' | |
jobs: | |
rust_lint_tests: | |
name: Run Clippy & Rustfmt lint tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
components: clippy, rustfmt | |
- uses: Swatinem/rust-cache@v1 | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "16.x" | |
- name: Install Node | |
run: npm install | |
working-directory: frontend | |
- name: Build Node | |
run: npm run build | |
working-directory: frontend | |
- name: Run fmt | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all | |
- name: Run clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --all-targets --all-features | |
rust_tests: | |
name: Rust tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "16.x" | |
- name: Install Node | |
run: npm install | |
working-directory: frontend | |
- name: Build Node | |
run: npm run build | |
working-directory: frontend | |
- name: Run tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --all-features --release #-p ultibi_core --features= ... #to save disk space | |
frontend_checks: | |
name: Frontend checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "16.x" | |
- name: Install | |
run: npm install | |
working-directory: frontend | |
- name: Typecheck | |
run: npx tsc | |
working-directory: frontend | |
- name: Lint | |
run: npm run lint | |
working-directory: frontend |