name: Embedded SDK PR Checks on: pull_request: paths: - "superset-embedded-sdk/**" types: [synchronize, opened, reopened, ready_for_review] # 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-24.04 defaults: run: working-directory: superset-embedded-sdk steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 with: node-version: "20" registry-url: "https://registry.npmjs.org" - run: npm ci - run: npm test - run: npm run build