name: Embedded SDK PR Checks on: pull_request: paths: - "superset-embedded-sdk/**" types: [synchronize, opened, reopened, ready_for_review] permissions: contents: read # cancel previous workflow jobs for PRs concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} cancel-in-progress: true jobs: embedded-sdk-test: runs-on: ubuntu-26.04 defaults: run: working-directory: superset-embedded-sdk steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version-file: "./superset-embedded-sdk/.nvmrc" registry-url: "https://registry.npmjs.org" - run: npm ci - run: npm test - run: npm run build