fix(deps): update dependency js-yaml to v3.14.2 [security] (#631) #112
This file contains hidden or 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: Heroku Deployment | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: bahmutov/npm-install@v1 | |
| - name: Use Node.js to test and build | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '10.24.1' | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Build | |
| run: yarn build | |
| - uses: akhileshns/heroku-deploy@v3.12.14 | |
| with: | |
| heroku_api_key: ${{secrets.HEROKU_API_KEY}} | |
| heroku_app_name: "close-issue-app" | |
| heroku_email: "helloqiu95@gmail.com" | |
| remote_branch: master |