Add contributor ayosh #2
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: JavaScript Checks | |
on: | |
pull_request: | |
branches: | |
- ${{ github.event.repository.default_branch }} | |
jobs: | |
lint-and-test: | |
name: Linting and Testing | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- name: Checkout Pull Request | |
uses: actions/jest | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Install Dependencies | |
run: npm install # Assuming you're using npm for managing dependencies | |
- name: Run Linter | |
run: npm run lint # Adjust the command to run your linter | |
- name: Run Tests | |
run: npm test # Adjust the command to run your tests | |