-
Notifications
You must be signed in to change notification settings - Fork 1
90 lines (73 loc) · 2.33 KB
/
ci.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
name: CI
env:
NODE_VERSION: 18
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
issues: write
pull-requests: write
jobs:
test:
name: Unit tests & Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
- name: Install test dependencies
run: yarn install --production=false --only=dev
- name: Lint code
run: yarn nx run-many -t lint
- name: Run Unit tests
run: yarn nx run-many -t test
build:
name: Build Docker image
needs: test
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- uses: actions/checkout@v4
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install test dependencies
run: yarn install --production=false --only=dev
- name: Get version number
id: version
run: echo "version=$(cat ./package.json | jq -r '.version')" >> $GITHUB_OUTPUT
- name: Build Docker image
run: |
yarn nx run backend:docker-build --tag=${{ secrets.DOCKER_HUB_USERNAME }}/stockdog:v-${{ steps.version.outputs.version }}
docker save ${{ secrets.DOCKER_HUB_USERNAME }}/stockdog:v-${{ steps.version.outputs.version }} > docker_image.tar
- name: Upload Docker image as artifact
uses: actions/upload-artifact@v3
with:
name: docker-image
path: docker_image.tar
push:
name: Push Docker image to DockerHub
needs: build
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- name: Download Docker image
uses: actions/download-artifact@v3
with:
name: docker-image
- name: Load Docker image
run: docker load < docker_image.tar
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Push Docker image
run: docker push ${{ secrets.DOCKER_HUB_USERNAME }}/stockdog:v-${{ needs.build.outputs.version }}