Branch test #51
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: Deployment pipeline | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: [master] | |
types: [opened, synchronize] | |
jobs: | |
simple_deployment_pipeline: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
- name: Install dependencies | |
run: npm install | |
- name: Check style | |
run: npm run eslint | |
- name: Build | |
run: npm run build | |
- name: Test | |
run: npm test | |
- name: e2e tests | |
uses: cypress-io/github-action@v5 | |
with: | |
command: npm run test:e2e | |
start: npm run start-prod | |
wait-on: http://localhost:5000 | |
- name: Trigger deployment | |
if: ${{ github.event_name == 'push' }} | |
run: curl https://api.render.com/deploy/srv-${{secrets.RENDER_SERVICE_ID}}?key=${{secrets.RENDER_API_KEY}} | |
tag_release: | |
needs: [simple_deployment_pipeline] | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Bump version and push tag | |
if: ${{ github.event_name == 'push' }} | |
uses: anothrNick/github-tag-action@8c8163ef62cf9c4677c8e800f36270af27930f42 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Notify Deployment Success | |
uses: rjstone/discord-webhook-notify@v1 | |
if: github.event_name == 'push' && success() | |
with: | |
severity: info | |
text: A new version of pokedex deployed. | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
- name: Notify Deployment Failure and Show Commit Info | |
uses: rjstone/discord-webhook-notify@v1 | |
if: failure() | |
with: | |
severity: error | |
text: Build failed! | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |