Observable gets its own package - Stage 1 #2522
Workflow file for this run
This file contains 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: CI | |
on: | |
pull_request: | |
types: ['opened', 'reopened', 'synchronize'] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['18', '20'] | |
name: Node ${{ matrix.node }} build | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- name: install | |
run: | | |
npm install -g yarn@latest | |
yarn install | |
- name: rxjs lint | |
run: yarn workspace rxjs lint | |
- name: rxjs build | |
run: yarn workspace rxjs build | |
- name: rxjs test | |
run: yarn workspace rxjs test | |
- name: rxjs dtslint | |
run: yarn workspace rxjs dtslint | |
- name: rxjs test:import | |
if: ${{ matrix.node == '18' || matrix.node == '20' }} | |
run: yarn workspace rxjs test:import | |
- name: rxjs test:esm | |
if: ${{ matrix.node == '18' || matrix.node == '20' }} | |
run: yarn workspace rxjs test:esm | |
- name: rxjs.dev build | |
run: yarn workspace rxjs.dev build --prod | |
- name: rxjs.dev test | |
run: yarn workspace rxjs.dev test --watch=false --browsers=ChromeHeadless |