imp(): implement all operations transformations #238
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: Collaboration manager check | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: yarn | |
| - name: Build the package | |
| uses: ./.github/actions/build | |
| with: | |
| package-name: '@editorjs/collaboration-manager' | |
| - name: Run ESLint check | |
| uses: ./.github/actions/lint | |
| with: | |
| package-name: '@editorjs/collaboration-manager' | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: yarn | |
| - name: Build the package | |
| uses: ./.github/actions/build | |
| with: | |
| package-name: '@editorjs/collaboration-manager' | |
| - name: Run unit tests | |
| uses: ./.github/actions/unit-tests | |
| with: | |
| package-name: '@editorjs/collaboration-manager' | |
| working-directory: './packages/collaboration-manager' | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build the package | |
| uses: ./.github/actions/build | |
| with: | |
| package-name: '@editorjs/collaboration-manager' |