Workflow run for pull request- Sanketika-Obsrv/issue-tracker#154: fix: ingestion spec generation on Dataset create #390
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: Pull Request | |
run-name: Workflow run for pull request- ${{ github.event.pull_request.title }} | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
test-cases: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.10' | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run test cases and lint | |
run: | | |
cd api-service | |
npm install | |
npm run actions:test | |
npm run lint |