feat(example): add one-click sweep-all-to-address-balance Sui demo #543
Workflow file for this run
This file contains hidden or 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: test-lint | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| lint: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| # - macOS-latest | |
| node_version: | |
| # - 14 | |
| - 24 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node_version }} | |
| cache: 'yarn' | |
| # fix src/classes.ts(2,27): error TS2307: Cannot find module 'fast-safe-stringify' | |
| # exec `yarn bootstrap` twice | |
| - run: yarn | |
| - run: yarn bootstrap | |
| - run: yarn bootstrap | |
| - run: NODE_ENV=production yarn build | |
| - run: yarn test | |
| - run: yarn lint | |
| - run: cd packages/injected && yarn lint:dist && cd - |