Skip to content

fix jest action

fix jest action #11

Workflow file for this run

name: Build main
on:
push:
branches:
- main
jobs:
build:
if: github.repository == 'hexlet-codebattle/codebattle_bot'
runs-on: ubuntu-latest
services:
db:
image: postgres:12-alpine
ports: ['5432:5432']
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20.x
# - name: Get yarn cache
# id: yarn-cache-dir-path
# run: echo "::set-output name=dir::$(yarn cache dir)"
#
# - uses: actions/cache@v4
# id: yarn-cache
# with:
# path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
# key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
# restore-keys: |
# ${{ runner.os }}-yarn-
- name: Install yarn dependencies
# if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --froze-lockfile
- name: Eslint
run: yarn lint
- name: Prettify code
uses: creyD/[email protected]
with:
prettier_options: --write **/*.{js,md}
- name: Run jest
run: yarn test
- name: Login to Docker Hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --pasword-stdin
- name: Build docker image for codebattle bot
run: make docker-build-chat-bot
- name: Push docker image for codebattle bot
run: make docker-push-chat-bot