feat: adjustments and 100% test coverage of botDetectionService #24
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: ci | |
on: [push, workflow_dispatch] | |
jobs: | |
build-and-test-job: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
env: | |
NODE_OPTIONS: '--max-old-space-size=3200' | |
steps: | |
- { uses: actions/checkout@v4, with: { persist-credentials: false } } | |
- { uses: actions/setup-node@v4, with: { node-version: 'lts/*', cache: 'yarn' } } | |
- { name: yarn, run: yarn --frozen-lockfile } | |
- name: build | |
run: yarn dev-lib tsc | |
- name: test | |
run: yarn test |