Deepthi M|Gok-363|Updated the save functionality to StockTake Api and also handled refresh of quantity when stock Adjustment is done. #116
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 Reqeust | |
on: | |
pull_request: | |
branches: [ master ] | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js 16.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "16.x" | |
- run: npm install | |
- run: npm run lint | |
- run: npm test | |
- run: npm run build |