chore: cleanup unused sdk includeKeys #872
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: Tests | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
test: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.5.0 | |
with: | |
fetch-depth: 1 | |
- name: Setup Node | |
uses: actions/setup-node@v3.6.0 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run Unit Tests | |
run: npm run test:ci | |
- name: Set up Python | |
run: scripts/setup-python.sh | |
- name: Get changed files | |
id: changed_files | |
uses: tj-actions/changed-files@v36 | |
with: | |
sha: ${{ github.event.pull_request.head.sha }} | |
- name: Run schema validation for changed files | |
run: | | |
chmod +x scripts/run-schema-validation.sh | |
scripts/run-schema-validation.sh "${{ steps.changed_files.outputs.all_changed_files }}" |