Update README.md #2
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
#Every changes in MASTER will deploy to marketplase with next patch number | |
name: test | |
on: | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
inputs: | |
name: | |
description: "Test manual action" | |
default: "test" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: npm install, build and test | |
run: | | |
npm install | |
npm run build --if-present | |
- name: Commit changes locally | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "Veniamin Rakov" | |
git add package-lock.json package.json | |
git commit -m "Update files by Deploy Action" |