Skip to content

fix: large registry #34

fix: large registry

fix: large registry #34

Workflow file for this run

name: Build verification on push to main branch
on:
push:
branches: [ main ]
jobs:
build-tasks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Npm Install
run: |
npm ci
- name: eslint using npm run eslint
run: |
npm run lint
- name: building build
run: |
npm run build
- name: Unit tests with coverage
run: |
npm run cover:unit
- name: Running Integration tests
env:
APP_CONFIG_FOR_INTEG_TESTS: ${{ secrets.APP_CONFIG_FOR_INTEG_TESTS || '' }}
run: |
npm run test:integ