aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/pull.yml
blob: 266b8f8c38e14b38ef7656d6f4f1286a4c2073c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 }}