refactor: RequestBuilder

This commit is contained in:
2023-03-28 15:34:01 +01:00
parent 1bf6c7031e
commit 465c59ea20
77 changed files with 3141 additions and 2343 deletions

View File

@ -1,18 +0,0 @@
name: Linting
on:
pull_request:
jobs:
formatting:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies
run: yarn install
- name: Check Eslint
run: yarn workspace @snort/app eslint

View File

@ -1,8 +1,8 @@
name: Formatting
name: Test+Lint
on:
pull_request:
jobs:
formatting:
test_and_lint:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
@ -14,5 +14,11 @@ jobs:
node-version: 16
- name: Install Dependencies
run: yarn install
- name: Build packages
run: yarn workspace @snort/nostr build
- name: Run tests
run: yarn workspace @snort/app test
- name: Check Eslint
run: yarn workspace @snort/app eslint
- name: Check Formatting
run: yarn workspace @snort/app prettier --check .