Add filter to displayed riders on admin side so they are only showed … #1086
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: CI Check | |
on: push | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '10.x' | |
- name: Install Dependencies | |
run: npm install | |
- name: Run Linter | |
run: npm run lint | |
- name: Run Prettier | |
run: npm run format:check | |
- name: Run Type Check | |
run: npm run type-check |