mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-17 19:26:23 +00:00
108 lines
3.3 KiB
YAML
108 lines
3.3 KiB
YAML
name: BotWhatsapp CI
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- dev
|
|
|
|
jobs:
|
|
############ BUILD PACKAGE ############
|
|
build-package:
|
|
name: Build Package
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- test-unit
|
|
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: Build Eslint rules
|
|
run: yarn lint:fix
|
|
|
|
############ RELEASE ############
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- build-package
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
|
|
- 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: Release @bot-whatsapp/bot
|
|
run: yarn node ./scripts/release.js --name=bot --version= --token="${{ secrets.NPM_TOKEN }}"
|
|
|
|
- name: Release @bot-whatsapp/cli
|
|
run: yarn node ./scripts/release.js --name=cli --version= --token="${{ secrets.NPM_TOKEN }}"
|
|
|
|
- name: Release @bot-whatsapp/create-bot-whatsapp
|
|
run: yarn node ./scripts/release.js --name=create-bot-whatsapp --version= --token="${{ secrets.NPM_TOKEN }}"
|
|
|
|
- name: Release @bot-whatsapp/database
|
|
run: yarn node ./scripts/release.js --name=database --version= --token="${{ secrets.NPM_TOKEN }}"
|
|
|
|
- name: Release @bot-whatsapp/provider
|
|
run: yarn node ./scripts/release.js --name=provider --version= --token="${{ secrets.NPM_TOKEN }}"
|
|
|
|
- name: Commit Versioning & Push changes
|
|
uses: actions-js/push@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
message: 'ci(version): :zap: automatic - ${date} updated versions every packages'
|
|
branch: 'next-release'
|
|
|
|
############ UNIT TEST ############
|
|
test-unit:
|
|
name: Unit Tests
|
|
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: Unit Tests
|
|
run: yarn test
|