OT server check #57
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: OT server 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/ot-server' | |
| - name: Run ESLint check | |
| uses: ./.github/actions/lint | |
| with: | |
| package-name: '@editorjs/ot-server' | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: yarn | |
| - name: Build the package | |
| uses: ./.github/actions/build | |
| with: | |
| package-name: '@editorjs/ot-server' | |
| - name: Run unit tests | |
| uses: ./.github/actions/unit-tests | |
| with: | |
| package-name: '@editorjs/ot-server' | |
| working-directory: './packages/ot-server' | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build the package | |
| uses: ./.github/actions/build | |
| with: | |
| package-name: '@editorjs/ot-server' |