jokes-bapak2/.github/workflows/ci.yml

122 lines
3.0 KiB
YAML
Raw Normal View History

2021-11-08 17:08:06 +00:00
name: CI
2021-07-09 06:19:58 +00:00
2021-07-23 15:39:23 +00:00
on:
2021-07-09 06:19:58 +00:00
push:
2021-07-16 09:10:40 +00:00
branches: [ "master" ]
2021-07-09 06:19:58 +00:00
jobs:
api-build:
2021-11-08 17:08:06 +00:00
name: API
2021-07-09 06:19:58 +00:00
runs-on: ubuntu-latest
2021-11-08 17:08:06 +00:00
container: golang:1.17-buster
2021-09-26 19:14:03 +00:00
timeout-minutes: 15
2021-07-17 11:27:26 +00:00
services:
postgres:
image: postgres:13-alpine
env:
PGDATABASE: jokesbapak2
POSTGRES_DB: jokesbapak2
PGUSER: postgres
POSTGRES_USER: postgres
PGPASSWORD: password
POSTGRES_PASSWORD: password
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
2021-11-08 17:08:06 +00:00
image: redis:6-alpine
2021-07-17 11:27:26 +00:00
ports:
- 6379:6379
2021-07-09 06:19:58 +00:00
defaults:
run:
working-directory: ./api
2021-07-17 11:27:26 +00:00
2021-07-09 06:19:58 +00:00
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Installling dependencies
2021-11-08 17:08:06 +00:00
run: go mod download
2021-07-17 11:27:26 +00:00
2021-07-09 06:19:58 +00:00
- name: Build
2021-07-14 18:24:47 +00:00
run: go build main.go
2021-07-17 11:27:26 +00:00
2021-11-08 15:40:17 +00:00
- name: Run test & coverage
run: go test -v -coverprofile=coverage.out -covermode=atomic ./...
env:
ENV: development
PORT: 5000
DATABASE_URL: postgres://postgres:password@postgres:5432/jokesbapak2
REDIS_URL: redis://@redis:6379
2021-07-09 06:19:58 +00:00
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: go
- name: Perform CodeQL Analysis
2021-07-15 06:51:39 +00:00
uses: github/codeql-action/analyze@v1
- name: Create Sentry release
uses: getsentry/action-release@v1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT_API}}
with:
environment: production
set_commits: skip
2021-07-19 18:35:21 +00:00
version: ${{ github.sha }}
- uses: codecov/codecov-action@v2
with:
2021-11-08 17:08:06 +00:00
flags: api
client-build:
name: Client
runs-on: ubuntu-latest
2021-11-08 18:19:38 +00:00
container: node:16-buster
2021-11-08 17:08:06 +00:00
timeout-minutes: 15
defaults:
run:
working-directory: ./client
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Installling dependencies
2021-11-08 18:19:38 +00:00
run: npm install
2021-11-08 17:08:06 +00:00
- name: Lint
2021-11-08 18:19:38 +00:00
run: npm run lint
2021-11-08 17:08:06 +00:00
- name: Build
2021-11-08 18:19:38 +00:00
run: npm run build
2021-11-08 17:08:06 +00:00
env:
VITE_SENTRY_DSN: https://examplePublicKey@o0.ingest.sentry.io/0
VITE_NODE_ENV: development
VITE_API_ENDPOINT: https://jokesbapak2.herokuapp.com/v1
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: javascript
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
- name: Create Sentry release
uses: getsentry/action-release@v1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT_CLIENT }}
with:
environment: production
set_commits: skip
version: ${{ github.sha }}