Skip to content

PromiseCache edge case fix #6

PromiseCache edge case fix

PromiseCache edge case fix #6

Workflow file for this run

name: CI-common-mobx
on:
pull_request:
types: [ready_for_review, opened, synchronize, reopened]
branches: [ main ]
paths:
- 'packages/common-mobx/**'
workflow_dispatch:
jobs:
lint-build-test:
if: github.event.pull_request.draft != true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install packages
run: npm i
- name: Build
working-directory: ./packages/common-mobx
run: npm run build
- name: Lint
working-directory: ./packages/common-mobx
run: npm run lint
- name: Test
working-directory: ./packages/common-mobx
run: npm run test