Skip to content

Commit

Permalink
Update lint_master.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmesamster committed Sep 3, 2024
1 parent 7252719 commit 208016b
Showing 1 changed file with 23 additions and 9 deletions.
32 changes: 23 additions & 9 deletions .github/workflows/lint_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,21 @@ jobs:
uses: actions/checkout@v2
- name: libudev-dev
run: sudo apt-get install -y libudev-dev
- uses: actions-rs/toolchain@v1
- name: install node
uses: actions/setup-node@master
with:
node-version: "current"
- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: enable corepack for yarnpkg upgrade
run: corepack enable
- name: Rust Cache
uses: Swatinem/rust-cache@v2.7.3
- name: cargo install nj-cli
run: cargo install nj-cli
- name: enable corepack for yarnpkg upgrade
run: corepack enable
- name: Install Build CLI tool
run: cargo install --path=cli
- name: JS/TS linting
Expand All @@ -30,12 +37,19 @@ jobs:
run: |
cargo chipmunk install shared client app
cargo chipmunk build binding wrapper wasm
cd application/client
yarn run check
cd ../../application/holder
yarn run check
cd ../../application/platform
yarn run check
- name: TypeScript check - Client Application
working-directory: application/client
run: yarn run check

- name: TypeScript check - Holder Application
working-directory: application/holder
run: yarn run check

- name: TypeScript check - Platform Application
working-directory: application/platform
run: yarn run check


# rust_lint:
# runs-on: ubuntu-latest
Expand Down

0 comments on commit 208016b

Please sign in to comment.