feat: add support for redis_family #259
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
name: Code Review | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
concurrency: | |
group: ${{ github.head_ref }}-pr | |
cancel-in-progress: true | |
jobs: | |
init: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- id: cache | |
uses: actions/cache@v3 | |
with: | |
path: ./node_modules | |
key: modules-${{ hashFiles('package-lock.json') }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- if: steps.cache.outputs.cache-hit != 'true' | |
run: npm ci | |
lint: | |
runs-on: ubuntu-latest | |
needs: [init] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }} | |
- uses: actions/cache@v3 | |
with: | |
path: ./node_modules | |
key: modules-${{ hashFiles('package-lock.json') }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- uses: wearerequired/lint-action@v2 | |
with: | |
eslint: true | |
eslint_extensions: ts | |
prettier: true | |
prettier_extensions: ts,json,js,yml | |
auto_fix: ${{ secrets.GH_TOKEN && true || false }} | |
commit_message: 'chore(lint): Fix code style issues with ${linter}' | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
git_email: '[email protected]' | |
build: | |
runs-on: ubuntu-latest | |
needs: [init] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare repository | |
run: git fetch --unshallow --tags | |
- uses: actions/cache@v3 | |
with: | |
path: ./node_modules | |
key: modules-${{ hashFiles('package-lock.json') }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- run: npm run ci:build | |
- env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
IMAGE: 'bull-monitor:latest' | |
run: npx auto shipit -d | |
test: | |
runs-on: ubuntu-latest | |
needs: [init] | |
timeout-minutes: 3 | |
services: | |
# Label used to access the service container | |
redis: | |
# Docker Hub image | |
image: redis | |
# Set health checks to wait until redis has started | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 6001:6379 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: ./node_modules | |
key: modules-${{ hashFiles('package-lock.json') }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- if: ${{ github.actor != 'dependabot[bot]' }} | |
uses: mattallty/jest-github-action@v1 | |
with: | |
test-command: npm run test:ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- if: ${{ github.actor == 'dependabot[bot]' }} | |
run: npm run test:ci | |
- run: npm run test:e2e | |
- name: unit tests | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} |