-
Notifications
You must be signed in to change notification settings - Fork 1
112 lines (94 loc) · 2.87 KB
/
pr_create.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
name: Тесты и раскатка на Pull Request
on: pull_request
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
test:
name: Проверяем стили
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- uses: pnpm/action-setup@v2
with:
version: 7.26.3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "pnpm"
- name: Install
run: pnpm install
- name: Check
run: pnpm lint && pnpm stylelint
test-format:
name: Выполняем тесты
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- uses: pnpm/action-setup@v2
with:
version: 7.26.3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "pnpm"
- name: Install
run: pnpm install
- name: Check
run: pnpm test
build-and-push-image:
name: Собираем dev Docker
runs-on: ubuntu-latest
needs:
- test
- test-format
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
file: ./deployment/Dockerfile
context: .
push: true
build-args: |
BUILD_MODE=testing
LAUNCH_MODE=development-${{ github.event.pull_request.number }}
APP_VERSION=${{ github.ref_name }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
deploy-dev:
name: Раскатываем dev среду
runs-on: ubuntu-latest
needs: build-and-push-image
environment:
name: development-pr-${{ github.event.pull_request.number }}
url: https://${{ github.event.repository.name }}__pr-${{ github.event.pull_request.number }}.dev.profcomff.com/
steps:
- name: Deploy
run: |
curl -X 'POST' \
'https://ci.dev.profcomff.com/pr_run' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: ${{ secrets.CI_DYAKOVSPACE_MSK_TOKEN }}' \
-d '{
"repo_url": "${{ github.repository }}",
"git_ref": "${{ github.ref }}"
}'