forked from smartlyio/full-stack-open-pokedex
-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (60 loc) · 2.03 KB
/
pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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 }}