Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add types and documentation #11

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: yarn
- run: yarn lint
- uses: gozala/[email protected]
# - run: yarn build
- run: yarn aegir dep-check
# - uses: ipfs/aegir/actions/bundle-size@master
# name: size
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# test-node:
# needs: check
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [windows-latest, ubuntu-latest, macos-latest]
# node: [12, 14]
# fail-fast: true
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v1
# with:
# node-version: ${{ matrix.node }}
# - run: yarn
# - run: npx nyc --reporter=lcov aegir test -t node -- --bail
# - uses: codecov/codecov-action@v1
# test-chrome:
# needs: check
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - run: yarn
# - run: npx aegir test -t browser -t webworker --bail
# test-firefox:
# needs: check
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - run: yarn
# - run: npx aegir test -t browser -t webworker --bail -- --browsers FirefoxHeadless
# test-electron-main:
# needs: check
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - run: yarn
# - run: npx xvfb-maybe aegir test -t electron-main --bail
# test-electron-renderer:
# needs: check
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - run: yarn
# - run: npx xvfb-maybe aegir test -t electron-renderer --bail
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
dist
Loading