forked from codigoencasa/builderbot
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): update ci
- Loading branch information
Showing
44 changed files
with
786 additions
and
577 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
packages/docs/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,168 @@ | ||
name: Bot CI Test | ||
name: BotWhatsapp CI | ||
|
||
on: | ||
push: | ||
branches: [dev] | ||
branches: | ||
- main | ||
pull_request: | ||
branches: [main] | ||
branches: | ||
- main | ||
- dev | ||
|
||
jobs: | ||
build: | ||
############ BUILD PACKAGE ############ | ||
build-package: | ||
name: Build Package | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
cache: 'yarn' | ||
registry-url: https://registry.npmjs.org/ | ||
|
||
- run: corepack enable | ||
|
||
- name: Install NPM Dependencies | ||
run: yarn install --immutable --network-timeout 300000 | ||
|
||
- name: Build Package | ||
run: yarn build | ||
|
||
- name: Test Package | ||
run: yarn test | ||
|
||
- name: Upload @bot-whatsapp/bot | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: dist-dev-bot | ||
path: packages/bot/lib/ | ||
if-no-files-found: error | ||
|
||
- name: Upload @bot-whatsapp/cli | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: dist-dev-cli | ||
path: packages/cli/lib/ | ||
if-no-files-found: error | ||
|
||
- name: Upload @bot-whatsapp/create-bot-whatsapp | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: dist-dev-create-bot-whatsapp | ||
path: packages/create-bot-whatsapp/lib/ | ||
if-no-files-found: error | ||
|
||
- name: Upload @bot-whatsapp/database | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: dist-dev-database | ||
path: packages/database/lib/ | ||
if-no-files-found: error | ||
|
||
- name: Upload @bot-whatsapp/database | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: dist-dev-provider | ||
path: packages/provider/lib/ | ||
if-no-files-found: error | ||
|
||
- name: Build Eslint rules | ||
run: yarn lint:fix | ||
|
||
############ RELEASE ############ | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [16.x] | ||
needs: | ||
- build-package | ||
- test-unit | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- uses: pnpm/action-setup@v2.2.4 | ||
with: | ||
version: 7 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
cache: 'pnpm' | ||
registry-url: https://registry.npmjs.org/ | ||
|
||
- run: corepack enable | ||
|
||
- name: Download Build Artifacts | ||
uses: actions/download-artifact@v2 | ||
|
||
- name: Print Distribution Artifacts | ||
run: tree builderio-qwik-distribution/ | ||
|
||
- name: Print Create Qwik CLI Artifacts | ||
run: tree dist-dev-create-qwik/ | ||
|
||
- name: Move Distribution Artifacts | ||
run: | | ||
mkdir -p packages/qwik/dist/ | ||
mv builderio-qwik-distribution/* packages/qwik/dist/ | ||
mkdir -p packages/create-qwik/dist/ | ||
mv dist-dev-create-qwik/* packages/create-qwik/dist/ | ||
mkdir -p packages/eslint-plugin-qwik/dist/ | ||
mv dist-dev-eslint-plugin-qwik/* packages/eslint-plugin-qwik/dist/ | ||
- name: Install NPM Dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Dry-Run Publish @builder.io/qwik | ||
if: ${{ github.event_name != 'workflow_dispatch' }} | ||
run: pnpm tsm scripts/index.ts --set-dist-tag="${{ github.event.inputs.disttag }}" --release --dry-run | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- name: Publish @builder.io/qwik | ||
if: ${{ github.event_name == 'workflow_dispatch' }} | ||
run: pnpm tsm scripts/index.ts --set-dist-tag="${{ github.event.inputs.disttag }}" --release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- name: Save artifacts | ||
if: ${{ needs.changes.outputs.fullbuild == 'true' && github.event_name == 'push' }} | ||
env: | ||
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} | ||
run: pnpm run qwik-save-artifacts | ||
|
||
############ UNIT TEST ############ | ||
test-unit: | ||
name: Unit Tests | ||
runs-on: ubuntu-latest | ||
needs: | ||
- build-package | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
node-version: 16.x | ||
cache: 'yarn' | ||
registry-url: https://registry.npmjs.org/ | ||
|
||
- run: corepack enable | ||
|
||
- name: Install NPM Dependencies | ||
run: yarn install --immutable --network-timeout 300000 | ||
- name: Test | ||
|
||
- name: Unit Tests | ||
run: yarn test |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ coverage/ | |
log | ||
log/* | ||
*.log | ||
*.tgz | ||
lib | ||
tmp/ | ||
.yarn/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
import { cloudflarePagesAdaptor } from '@builder.io/qwik-city/adaptors/cloudflare-pages/vite'; | ||
import { extendConfig } from '@builder.io/qwik-city/vite'; | ||
import baseConfig from '../../vite.config'; | ||
import { cloudflarePagesAdaptor } from '@builder.io/qwik-city/adaptors/cloudflare-pages/vite' | ||
import { extendConfig } from '@builder.io/qwik-city/vite' | ||
import baseConfig from '../../vite.config' | ||
|
||
export default extendConfig(baseConfig, () => { | ||
return { | ||
build: { | ||
ssr: true, | ||
rollupOptions: { | ||
input: ['src/entry.cloudflare-pages.tsx', '@qwik-city-plan'], | ||
}, | ||
}, | ||
plugins: [ | ||
cloudflarePagesAdaptor({ | ||
staticGenerate: true, | ||
}), | ||
], | ||
}; | ||
}); | ||
return { | ||
build: { | ||
ssr: true, | ||
rollupOptions: { | ||
input: ['src/entry.cloudflare-pages.tsx', '@qwik-city-plan'], | ||
}, | ||
}, | ||
plugins: [ | ||
cloudflarePagesAdaptor({ | ||
staticGenerate: true, | ||
}), | ||
], | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module.exports = { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/web-manifest-combined.json", | ||
"name": "qwik-project-name", | ||
"short_name": "Welcome to Qwik", | ||
"start_url": ".", | ||
"display": "standalone", | ||
"background_color": "#fff", | ||
"description": "A Qwik project app." | ||
"$schema": "https://json.schemastore.org/web-manifest-combined.json", | ||
"name": "qwik-project-name", | ||
"short_name": "Welcome to Qwik", | ||
"start_url": ".", | ||
"display": "standalone", | ||
"background_color": "#fff", | ||
"description": "A Qwik project app." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
nav.breadcrumbs { | ||
padding: 5px; | ||
border-bottom: 1px solid #ddd; | ||
padding: 5px; | ||
border-bottom: 1px solid #ddd; | ||
} | ||
|
||
nav.breadcrumbs > span { | ||
display: inline-block; | ||
padding: 5px 0; | ||
font-size: 12px; | ||
display: inline-block; | ||
padding: 5px 0; | ||
font-size: 12px; | ||
} | ||
|
||
nav.breadcrumbs > span a { | ||
text-decoration: none; | ||
color: inherit; | ||
text-decoration: none; | ||
color: inherit; | ||
} | ||
|
||
nav.breadcrumbs > span::after { | ||
content: '>'; | ||
padding: 0 5px; | ||
opacity: 0.4; | ||
content: '>'; | ||
padding: 0 5px; | ||
opacity: 0.4; | ||
} | ||
|
||
nav.breadcrumbs > span:last-child::after { | ||
display: none; | ||
display: none; | ||
} |
Oops, something went wrong.