Solution For Git Scenario
Solution For Git Scenario
Process expanding:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test
Push the file to trigger the workflow.