Skip to content

feat: add feeds.follow.updated handler & cleanup #250

feat: add feeds.follow.updated handler & cleanup

feat: add feeds.follow.updated handler & cleanup #250

Workflow file for this run

name: Lint and test
env:
VITE_STREAM_API_KEY: ${{ vars.CLIENT_TEST_API_KEY }}
VITE_STREAM_API_SECRET: ${{ secrets.CLIENT_TEST_SECRET }}
on:
push:
branches:
- main
pull_request:
types: [opened, edited, synchronize, reopened]
jobs:
lint-and-test:
timeout-minutes: 30
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install Dependencies
run: yarn install --immutable
- name: Lint Packages
run: yarn lint:all
- name: Build packages
run: NODE_ENV=production yarn build:libs
- name: Test packages
run: yarn test:ci:libs