Bump body-parser and express (#78) #64
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: Deploy Bot | |
on: | |
push: | |
branches: [master] | |
jobs: | |
deployment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Installing NPM dependencies | |
run: sudo chown -R runner /usr/local/lib/node_modules && npm install | |
- name: Setting up new build of the reporter | |
run: npm run build && npm run link-pkg | |
- name: Deploying version | |
uses: danitseitlin/package-deployer@master | |
with: | |
pkg_name: testcafe-reporter-reportportal-plugin | |
npm_access_token: ${{secrets.NPM_AUTH_TOKEN}} | |
github_access_token: ${{secrets.G_AUTH_TOKEN}} |