chore(core,schemas): remove feature guard of organization api resource #18415
Workflow file for this run
This file contains 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: Upload Annotations | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
upload-annotations: | |
# avoid out of memory issue since macOS has bigger memory | |
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources | |
runs-on: macos-latest | |
# fork repos need to opt out | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node and pnpm | |
uses: silverhand-io/actions-node-pnpm-run-steps@v4 | |
with: | |
pnpm-version: 9 | |
- name: Prepack | |
run: pnpm prepack | |
# Build connectors before running lint since some connectors rely on the generated types | |
- name: Build connectors | |
run: pnpm connectors build | |
- name: Lint with Report | |
run: pnpm -r --parallel lint:report && node .scripts/merge-eslint-reports.js | |
- name: Annotate Code Linting Results | |
uses: ataylorme/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload ESLint report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: eslint_report.json | |
path: eslint_report.json |