Skip to content

fix: remove protected flag from SupabaseClient realtime var #766

fix: remove protected flag from SupabaseClient realtime var

fix: remove protected flag from SupabaseClient realtime var #766

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
- next
- rc
jobs:
test:
name: Test / OS ${{ matrix.os }} / Node ${{ matrix.node }}
strategy:
matrix:
os: [ubuntu-latest]
node: ['16']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Run tests
run: |
npm clean-install
npm run test:coverage
- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./test/coverage/lcov.info