name: Embedded SDK PR Checks on: pull_request: paths: - "superset-embedded-sdk/**" types: [synchronize, opened, reopened, ready_for_review] jobs: embedded-sdk-test: if: github.event.pull_request.draft == false runs-on: ubuntu-20.04 defaults: run: working-directory: superset-embedded-sdk steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: "16" registry-url: 'https://registry.npmjs.org' - run: npm ci - run: npm test - run: npm run build