Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore(deps): update dependency glob to v11 #238

chore(deps): update dependency glob to v11

chore(deps): update dependency glob to v11 #238

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@v4
- 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
run: |
npm run test:integ