feat(NoteManager): Improve filtering by tags in note search #1519
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: pull_request | |
name: PR | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
CLIENT-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: npm i | |
working-directory: client | |
run: | | |
npm install | |
- name: build | |
working-directory: client | |
run: | | |
npm run build:ci | |
CLIENT-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: npm i | |
working-directory: client | |
run: | | |
npm install | |
- name: lint | |
working-directory: client | |
run: | | |
npm run lint:ci | |
CLIENT-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: npm i | |
working-directory: client | |
run: | | |
npm install | |
- name: test | |
working-directory: client | |
run: | | |
npm run test | |
SERVER: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: black | |
uses: psf/black@stable | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install ruff | |
- name: ruff | |
working-directory: server | |
run: | | |
ruff check src |