Skip to content

Configure Mend for GitHub Enterprise #170

Configure Mend for GitHub Enterprise

Configure Mend for GitHub Enterprise #170

Workflow file for this run

name: ci-check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ci-check-${{ github.ref }}
cancel-in-progress: true
jobs:
ci-check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Run checks
run: yarn ci-check