diff options
author | Braxton Hall | 2022-10-24 19:25:34 +0000 |
---|---|---|
committer | GitHub | 2022-10-24 19:25:34 +0000 |
commit | a139a04ba0a5de1c36044e3dae1c6833193d2bea (patch) | |
tree | cc9a8ca446284f065fc7d220190398fd8ff40ce1 /.github/workflows | |
parent | 13fc2738b971774a3af451e63fcb34e8010fadc5 (diff) | |
parent | 8af5f6d9351554b22e75650487d1afe5745df39b (diff) |
Merge pull request #23 from braxtonhall/nico
Nico
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/pull.yml | 24 |
1 files changed, 24 insertions, 0 deletions
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 }} |