This repository was archived by the owner on Oct 21, 2025. It is now read-only.
build: Remove reactifex dependency. #319
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: node_js CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [16] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup Nodejs | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Setup npm | |
| run: npm i -g [email protected] | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Cache node modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.npm | |
| key: v1-npm-deps-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: v1-npm-deps- | |
| - name: Unit Tests | |
| run: npm run test | |
| - name: Build | |
| run: npm run build | |
| - name: Validation Checks | |
| run: ./.github/validate_changes_for_merge.sh | |
| - name: Run Coverage | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: true |