-
Notifications
You must be signed in to change notification settings - Fork 13
73 lines (59 loc) · 1.96 KB
/
github-actions-demo.yaml
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
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
# executar comandos em um subdiretório
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./exercicios/para-sala/users-api-aula
# configuração do ambiente de execução do projeto Node.js
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
# clone do repositório
- name: checkout
uses: actions/checkout@v4
# pega a versão declarada do Node.j e configura no ambiente virtual
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node-version }}
# instala dependencias e roda os testes
# - run: npm ci
# - run: npm run build --if-present
- run: npm test
# lint para garantir que o código segue os padrões definidos
- name: Run ESLint
run: npm run lint
# verificação de vulnerabilidades em pacotes
- name: Run security audit
run: npm audit
# conferir se tem erros de tipagem
- name: TypeScript Check
run: npx tsc --noEmit
# setamos o Docker Buildx no ambiente onde o job está sendo executado.
# Permite construir imagens Docker para várias arquiteturas
- name: Set up Docker Buildx
if: github.ref == 'refs/heads/main'
uses: docker/setup-buildx-action@v3
# faz login no docker hub
- name: Log in to Docker Hub
if: github.ref == 'refs/heads/main'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push
if: github.ref == 'refs/heads/main'
uses: docker/build-push-action@v4
with:
context: exercicios/para-sala/users-api-aula
push: true
tags: raissabrizeno/users-api-aula:1.0.0