Skip to content

implement bundler in ts #18

implement bundler in ts

implement bundler in ts #18

Workflow file for this run

name: quality-gate
on:
push:
branches-ignore:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install modules
run: npm i
- name: Typeccheck
run: npm run typecheck;
- name: Run linitng
run: npm run lint
- name: Run unit tests
run: npm run test:unit
- name: Run integration tests
run: npm run test:integration