From dcb9598f703014fc913193fa250d11d5a7605452 Mon Sep 17 00:00:00 2001 From: Kinjal Raykarmakar Date: Sun, 14 Nov 2021 13:36:54 +0530 Subject: [PATCH] Create node.js.yml --- .github/workflows/node.js.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/node.js.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 0000000..75604e8 --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,18 @@ +# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: React Build for Production + +on: release +jobs: + createPullRequest: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: npm run build + - name: Create Pull Request + uses: peter-evans/create-pull-request@v2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: Add build artifact + title: Add build artifact