-
Notifications
You must be signed in to change notification settings - Fork 0
144 lines (131 loc) · 4.29 KB
/
ci-cd.test.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# name: CI/CD Test Pipeline
# on:
# push:
# branches:
# - test
# pull_request:
# branches:
# - test
# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true
# jobs:
# build:
# runs-on: ubuntu-latest
# environment: test
# steps:
# - name: Checkout code
# uses: actions/checkout@v3
# - name: Setup Node.js
# uses: actions/setup-node@v3
# with:
# node-version: '18'
# - name: Install dependencies
# run: |
# cd ./satsquare
# npm install
# - name: Run prisma commands and build
# run: |
# export DATABASE_URL=${{ secrets.DATABASE_URL }}
# export NEXTAUTH_SECRET=${{ secrets.NEXTAUTH_SECRET }}
# export NEXT_PUBLIC_LNURL_AUTH_PUBLIC_KEY=${{ secrets.NEXT_PUBLIC_LNURL_AUTH_PUBLIC_KEY }}
# export NEXT_PUBLIC_SITE_URL=${{ secrets.NEXT_PUBLIC_SITE_URL }}
# export NEXT_PUBLIC_SOCKET_URL=${{ secrets.NEXT_PUBLIC_SOCKET_URL }}
# export REDIS_URL=${{ secrets.REDIS_URL }}
# cd ./satsquare
# npx prisma generate
# npx prisma db push
# npm run seed
# npm run build
# lint:
# needs: build
# runs-on: ubuntu-latest
# environment: test
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: '18'
# - run: |
# cd ./satsquare
# npm ci
# npm run lint
# unit-tests:
# needs: build
# runs-on: ubuntu-latest
# environment: test
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: '18'
# - run: |
# cd ./satsquare
# npm ci
# npm run test
# e2e-tests:
# needs: build
# runs-on: ubuntu-latest
# environment: test
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: '18'
# - run: |
# cd ./satsquare
# npm ci
# npm run test:e2e
# deps-vulnerability:
# needs: [e2e-tests, build]
# runs-on: ubuntu-latest
# environment: test
# steps:
# - uses: actions/checkout@v3
# - run: |
# cd ./satsquare
# npm ci
# npm audit --audit-level=moderate
# docker-build:
# needs: deps-vulnerability
# runs-on: ubuntu-latest
# environment: test
# permissions:
# contents: read
# packages: write
# steps:
# - uses: actions/checkout@v3
# - uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
# - run: |
# cd ./satsquare
# docker build -f Dockerfile.Test --build-arg DATABASE_URL=${{ secrets.DATABASE_URL }} --build-arg NEXTAUTH_SECRET="${{ github.sha }}" -t ghcr.io/ismail-mouyahada/master-satsquare-app:test-${{ github.sha }} .
# - uses: aquasecurity/[email protected]
# with:
# image-ref: ghcr.io/ismail-mouyahada/master-satsquare-app:test-${{ github.sha }}
# - run: docker push ghcr.io/ismail-mouyahada/master-satsquare-app:test-${{ github.sha }}
# notify:
# needs: docker-build
# runs-on: ubuntu-latest
# environment: test
# steps:
# - name: Notification de succès 🎉
# uses: containrrr/shoutrrr-action@v1
# if: success()
# with:
# url: ${{ secrets.DISCORD_WEBHOOK_URL }}
# title: "🚀 Déploiement réussi : ${{ github.sha }} sur TEST 🎉"
# message: "Voir les modifications : ${{ github.event.compare }}."
# username: "TestBOT"
# avatar: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9SYdK1M7jEIJgdj9foHiEoUdUiYxfREv3jg&s"
# - name: Notification d'échec 💥
# uses: containrrr/shoutrrr-action@v1
# if: failure()
# with:
# url: ${{ secrets.DISCORD_WEBHOOK_URL }}
# message: "❗ Consultez les logs pour plus de détails. Voir les modifications : ${{ github.event.compare }}."
# username: "TestBOT"
# avatar: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9SYdK1M7jEIJgdj9foHiEoUdUiYxfREv3jg&s"