* fix: running tests and adding tests to CI & CD * fix: yarn.lock * fix: alert service * fix: ts-jest utils import
23 lines
407 B
YAML
23 lines
407 B
YAML
name: Pull request
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- develop
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Install dependencies
|
|
run: yarn install --pure-lockfile
|
|
- name: Bundle
|
|
run: yarn bundle
|
|
- name: ESLint
|
|
run: yarn lint
|
|
- name: Test
|
|
run: yarn test
|