Merge pull request #23931 from GuiLeme/plugin-chat-message-improvements #528
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: Typescript - validate code (eslint) | |
| on: | |
| push: | |
| branches: | |
| - "develop" | |
| - "v2.[5-9].x-release" | |
| - "v[3-9].*.x-release" | |
| paths: | |
| - "bigbluebutton-html5/**.ts" | |
| - "bigbluebutton-html5/**.tsx" | |
| - "bigbluebutton-html5/package.json" | |
| - "bigbluebutton-html5/package-lock.json" | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - "bigbluebutton-html5/**.ts" | |
| - "bigbluebutton-html5/**.tsx" | |
| - "bigbluebutton-html5/package.json" | |
| - "bigbluebutton-html5/package-lock.json" | |
| permissions: | |
| contents: read | |
| jobs: | |
| ts-code-validation: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout PR's source merged into its target branch | |
| if: github.event_name == 'pull_request' | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: refs/pull/${{ github.event.number }}/merge | |
| - name: Checkout commit/branch | |
| if: github.event_name != 'pull_request' | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.ref }} | |
| - name: install npm dependencies | |
| working-directory: bigbluebutton-html5 | |
| run: npm ci | |
| - name: typescript code validation with eslint | |
| working-directory: bigbluebutton-html5 | |
| run: npx eslint . --ext .ts,.tsx |