Skip to content

LazyPromise: covered edge cases #113

LazyPromise: covered edge cases

LazyPromise: covered edge cases #113

Workflow file for this run

name: CI-common
on:
pull_request:
types: [ready_for_review, opened, synchronize, reopened]
branches: [ main ]
paths:
- 'packages/common/**'
workflow_dispatch:
jobs:
lint-build-test:
if: github.event.pull_request.draft != true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install packages
run: npm i
- name: Build
working-directory: ./packages/common
run: npm run build
- name: Lint
working-directory: ./packages/common
run: npm run lint
- name: Test
working-directory: ./packages/common
run: npm run test
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.COVERALLS_REPO_TOKEN }}
base-path: packages/common