Skip to content

Simple IP range migration (#246) #172

Simple IP range migration (#246)

Simple IP range migration (#246) #172

Workflow file for this run

name: "Main"
on:
pull_request:
push:
branches:
- "master"
- "v[0-9]+.[0-9]+.[0-9]+"
paths-ignore:
- "README.md"
jobs:
unit-test:
runs-on: ubuntu-16.04
name: Tests
defaults:
run:
working-directory: ./build/src
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: "10.x"
- run: yarn install
- run: yarn lint
- run: yarn test
- run: yarn test:int
release:
name: Release
runs-on: ubuntu-latest
needs: [unit-test]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- name: Publish
run: npx @dappnode/dappnodesdk publish patch --dappnode_team_preset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}