feat: read-only notarization api #27
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: Check Move formatting | |
| on: | |
| pull_request: | |
| paths: | |
| - 'notarization-move/**' | |
| - develop | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| paths: | |
| - 'notarization-move/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| MOVE_PACKAGES_PATH: notarization-move | |
| jobs: | |
| prettier-move: | |
| name: Check Move files formatting | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ${{ env.MOVE_PACKAGES_PATH }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| # We don't have the prettier plugin for iota published yet, so | |
| # we can use mysten version | |
| - run: npm i @mysten/prettier-plugin-move | |
| - run: npx prettier-move -c **/*.move |