feat: In-App SSE (#555) #3645
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 | |
| on: [push, pull_request] | |
| jobs: | |
| test-deploy: | |
| name: Test able to deploy to npm | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - run: npm ci | |
| - name: Compile | |
| run: npm run typescript | |
| - name: Publish test | |
| run: npm publish --dry-run | |
| assert-lint: | |
| name: Assert lint check passes and no lint errors exist | |
| permissions: | |
| checks: write # for eslint annotation action to create check for the PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - run: npm ci | |
| - run: npm run lint:report | |
| - name: Annotate Code Linting Results | |
| uses: ataylorme/eslint-annotate-action@21a1ba0738d8b732639999029c4ff40b6e121bb4 # v3 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| check-name: 'eslint results' | |
| only-pr-files: false | |
| fail-on-warning: false | |
| fail-on-error: true | |
| markdown-report-on-step-summary: true | |
| report-json: "eslint_report.json" |