Skip to content

feat!: client abstraction #611

feat!: client abstraction

feat!: client abstraction #611

Workflow file for this run

# This is a Github Workflow that runs tests on any push or pull request.
# If the tests pass and this is a push to the master branch it also runs Semantic Release.
name: CI
on:
push:
paths-ignore:
- '**.md'
- '/docs/*'
pull_request:
types: ['opened', 'reopened', 'synchronize']
jobs:
lint:
name: lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install deps
run: yarn
- name: Lint
run: yarn lint
build:
name: build
needs: lint
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install deps
run: |
yarn
yarn lerna bootstrap
- name: Build
run: yarn build
- name: Save target (artifact)
uses: actions/upload-artifact@v3
with:
name: target
retention-days: 1
# If a wildcard pattern is used, the path hierarchy will be preserved after the first wildcard pattern.
# Dummy file CODOWNERS is also added to preserve paths
# https://github.com/actions/upload-artifact#upload-using-multiple-paths-and-exclusions
path: |
!packages/*/node_modules
!packages/*/src
packages
CODEOWNERS
test_push:
needs: build
strategy:
matrix:
node-version: [18.x]
folder: [./packages/clients ./packages/log,./packages/programs,./packages/transport ./packages/utils]
if: github.event_name == 'push'
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Restore target
uses: actions/download-artifact@v3
with:
name: target
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install deps
run: |
yarn
yarn lerna bootstrap
- name: Tests
run: yarn test --roots ${{matrix.folder}} --w 2
test_pr:
if: github.event_name == 'pull_request'
needs: build
strategy:
matrix:
os: [ ubuntu-22.04 ]
node-version: [18.x]
folder: [./packages/client,./packages/log ./packages/programs,./packages/transport/direct-block ./packages/transport/direct-stream ./packages/transport/direct-sub ./packages/transport/libp2p-test-utils ./packages/transport/peerbit-libp2p ./packages/utils ./packages/server-node]
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Restore target
uses: actions/download-artifact@v3
with:
name: target
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install deps
run: |
yarn
yarn lerna bootstrap
- name: Tests
run: yarn test --roots ${{matrix.folder}} --w 2