Skip to content

feat: rxjs support

feat: rxjs support #35

Workflow file for this run

name: CI green
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
types: [checks_requested]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
env:
NODE_VERSION: '16.17.1'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup node
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linters
run: |
yarn lint
yarn typescript:check
yarn prettier:check
yarn test
ci-pass:
name: CI is green
runs-on: ubuntu-latest
needs:
- test
steps:
- run: exit 0