Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 35 additions & 14 deletions .github/workflows/ci-build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- "public/**"
- "index.html"
- "package.json"
- "package-lock.json"
- "pnpm-lock.yaml"
- "tsconfig*.json"
- "vite.config.ts"
- "tailwind.config.js"
Expand All @@ -21,11 +21,12 @@ on:
- "public/**"
- "index.html"
- "package.json"
- "package-lock.json"
- "pnpm-lock.yaml"
- "tsconfig*.json"
- "vite.config.ts"
- "tailwind.config.js"
- "postcss.config.js"
- ".github/workflows/ci-build-check.yml"
workflow_dispatch:

permissions:
Expand All @@ -47,20 +48,25 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 10

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache: pnpm
cache-dependency-path: pnpm-lock.yaml

- name: Instalar dependências
run: npm install
run: pnpm install --frozen-lockfile

- name: Verificar tipos TypeScript
id: typecheck
continue-on-error: true
run: |
set +e
OUTPUT=$(npx tsc --noEmit 2>&1)
OUTPUT=$(pnpm exec tsc --noEmit 2>&1)
EXIT_CODE=$?
echo "$OUTPUT"

Expand All @@ -80,20 +86,25 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 10

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache: pnpm
cache-dependency-path: pnpm-lock.yaml

- name: Instalar dependências
run: npm install
run: pnpm install --frozen-lockfile

- name: Executar ESLint
id: lint
continue-on-error: true
run: |
set +e
OUTPUT=$(npm run lint 2>&1)
OUTPUT=$(pnpm run lint 2>&1)
EXIT_CODE=$?
echo "$OUTPUT"

Expand All @@ -115,20 +126,25 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 10

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache: pnpm
cache-dependency-path: pnpm-lock.yaml

- name: Instalar dependências
run: npm install
run: pnpm install --frozen-lockfile

- name: Executar testes
id: test
continue-on-error: true
run: |
set +e
OUTPUT=$(npm test 2>&1)
OUTPUT=$(pnpm test 2>&1)
EXIT_CODE=$?
echo "$OUTPUT"

Expand All @@ -150,20 +166,25 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 10

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache: pnpm
cache-dependency-path: pnpm-lock.yaml

- name: Instalar dependências
run: npm install
run: pnpm install --frozen-lockfile

- name: Build do projeto
id: build
continue-on-error: true
run: |
set +e
OUTPUT=$(npm run build 2>&1)
OUTPUT=$(pnpm run build 2>&1)
EXIT_CODE=$?
echo "$OUTPUT"

Expand Down
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,29 @@ node_modules
.env.local
.env.*.local

# IDEs
.vscode
.idea

# Build
dist/
build
out
.next
.nuxt
.vercel
.output
.turbo
.vite
.rollup.cache
.eslintcache



# Logs
logs/


# Configurações
config

15 changes: 0 additions & 15 deletions dist/404.html

This file was deleted.

8 changes: 0 additions & 8 deletions dist/_headers

This file was deleted.

1 change: 0 additions & 1 deletion dist/_redirects

This file was deleted.

1 change: 0 additions & 1 deletion dist/assets/AIInsights-sPr4irwZ.js

This file was deleted.

2 changes: 0 additions & 2 deletions dist/assets/apple-touch-icon-CS-dACiN.png

This file was deleted.

Binary file removed dist/assets/favicon-32-DaNsWMEX.png
Binary file not shown.
2 changes: 0 additions & 2 deletions dist/assets/favicon-BKHNMF8M.ico

This file was deleted.

20 changes: 0 additions & 20 deletions dist/assets/html2canvas.esm-CTiZndrd.js

This file was deleted.

2 changes: 0 additions & 2 deletions dist/assets/icon-16-BtPvfhG2.png

This file was deleted.

2 changes: 0 additions & 2 deletions dist/assets/icon-48-DGd6FjnO.png

This file was deleted.

1 change: 0 additions & 1 deletion dist/assets/index-DoaGRUKp.css

This file was deleted.

Loading
Loading