Skip to content

Commit

Permalink
Update CI/CD tools
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbarbara committed Feb 6, 2024
1 parent 440480d commit 50222a1
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 65 deletions.
32 changes: 0 additions & 32 deletions .codeclimate.yml

This file was deleted.

87 changes: 87 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
name: CI

on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches: ['*']

workflow_dispatch:

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
main:
name: Validate and Deploy
runs-on: ubuntu-latest

env:
CI: true

steps:
- name: Setup timezone
uses: zcong1993/setup-timezone@master
with:
timezone: America/Sao_Paulo

- name: Setup repo
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v4
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install Packages
run: |
pnpm install
pnpx cypress install
timeout-minutes: 3

- name: Validate and Build
run: pnpm run validate
timeout-minutes: 3

- name: E2E Tests
uses: cypress-io/github-action@v6
with:
build: pnpm run build
start: pnpm start
wait-on: 'pnpx wait-on --timeout 60000 http://localhost:3000'
record: true
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: SonarCloud Scan
if: "!startsWith(github.ref, 'refs/tags/')"
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
13 changes: 0 additions & 13 deletions .github/workflows/push.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

6 changes: 6 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
sonar.projectKey=gilbarbara_react-redux-saga-boilerplate
sonar.organization=gilbarbara-github
sonar.source=./src
sonar.javascript.lcov.reportPaths=./coverage/lcov.info
sonar.exclusions=**/test/**/*.*,**/tools/**/*.*
sonar.coverage.exclusions=**/test/**/*.*,**/tools/**/*.*

0 comments on commit 50222a1

Please sign in to comment.