diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/pull_request_template.md | 1 | ||||
-rw-r--r-- | .github/workflows/pull.yml | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..b0d7ac8 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1 @@ +- [ ] I added myself to [`people.json`](./people.json)! diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml new file mode 100644 index 0000000..266b8f8 --- /dev/null +++ b/.github/workflows/pull.yml @@ -0,0 +1,24 @@ +name: Check people + +on: + pull_request: + branches: + - main + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node: [ 16.x ] + + steps: + - uses: actions/checkout@v2 + - name: Install modules with Node ${{ matrix.node }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node }} + - name: Check people + run: node bin/checkPeople.js ${{ github.actor }} |