Skip to content

Enhancement: Run subscription actions in an effect scope that is disposed when a channel is deleted #460

Enhancement: Run subscription actions in an effect scope that is disposed when a channel is deleted

Enhancement: Run subscription actions in an effect scope that is disposed when a channel is deleted #460

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
typescript:
name: Type Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup
uses: ./.github/actions/setup
- name: Validate Types
run: npm run types
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup
uses: ./.github/actions/setup
- name: Lint application
run: npm run lint
tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup
uses: ./.github/actions/setup
- name: Run unit tests
run: npm run test