Skip to content

fix(client): load more feeds #124

fix(client): load more feeds

fix(client): load more feeds #124

Workflow file for this run

name: Lint Client
on:
push:
branches: [ "master" ]
paths:
- 'client/**'
pull_request:
branches: [ "master" ]
paths:
- 'client/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: |
cd client
npm install
- name: Lint
run: |
cd client
npm run lint