Add missing sender
option to config.json for v5 servers
#14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Integration Development Checklist | |
on: | |
pull_request: | |
branches: [ master, main, develop ] | |
jobs: | |
run-integration-development-checklist: | |
runs-on: ubuntu-latest | |
container: 'centos:7' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
- name: Test NPM Install | |
id: test-npm-install | |
run: | | |
npm ci | |
- name: Polarity Integration Development Checklist | |
id: int-dev-checklist | |
uses: polarityio/polarity-integration-development-checklist@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |