diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml new file mode 100644 index 0000000000..9c4432adda --- /dev/null +++ b/.github/workflows/install.yml @@ -0,0 +1,23 @@ +name: NPM install + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2.3.4 + - name: Use Node.js 12.x + uses: actions/setup-node@v2.1.5 + with: + node-version: "12.x" + - name: Install dependencies + run: npm install + - name: Commit and push changes + uses: EndBug/add-and-commit@v7 + with: + author_name: github-actions[bot] + author_email: 41898282+github-actions[bot]@users.noreply.github.com + message: "run install"