add NIP-26 delegation (#7)

* add delegate method

* enable ci on PR

* enable test on ci

* lint

* lint

* off flaky tests
This commit is contained in:
Marco Argentieri
2023-02-22 18:41:30 +01:00
committed by GitHub
parent 39c9d8f071
commit b176cba1a1
4 changed files with 153 additions and 104 deletions

View File

@@ -1,5 +1,9 @@
name: CI
on: [push]
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
@@ -7,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['14.x', '16.x', '18.x']
node: ['14.x', '16.x']
os: [ubuntu-latest]
steps:
@@ -25,8 +29,5 @@ jobs:
- name: Lint
run: yarn lint
#- name: Test
# run: yarn test --ci --coverage --maxWorkers=2
- name: Build
run: yarn build