Skip to content

feat(ts-vitest): added a new package to support vitest for testing utils #446

feat(ts-vitest): added a new package to support vitest for testing utils

feat(ts-vitest): added a new package to support vitest for testing utils #446

Workflow file for this run

name: Continuous Integration
on: pull_request
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
env:
LATEST_NODE_VERSION: 18
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 19]
fail-fast: false
services:
rabbitmq:
image: rabbitmq:management
env:
RABBITMQ_ERLANG_COOKIE: "SWQOKODSQALRPCLNMEQG"
RABBITMQ_DEFAULT_USER: "rabbitmq"
RABBITMQ_DEFAULT_PASS: "rabbitmq"
RABBITMQ_DEFAULT_VHOST: "/"
ports:
- 5672/tcp
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Build ts-vitest
if: matrix.node == 18
run: yarn build:vitest
- name: Run unit tests
run: yarn test:ci
- name: Run Vitest unit tests
if: matrix.node == 18
run: yarn test:vitest:ci
- name: Publish code coverage
if: matrix.node == env.LATEST_NODE_VERSION
run: echo Not Implemented Yet
- name: Run integration tests
run: |
yarn --cwd ./integration/rabbitmq
yarn test:ci:integration
env:
NODE_ENV: ci
RABBITMQ_HOST: localhost
RABBITMQ_PORT: ${{ job.services.rabbitmq.ports[5672] }}