[COH-19276] [Feature] IM gamepad enchancement #1089
Workflow file for this run
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
# This workflow will run the linters and check if the all the code satisfies the gameface components style guide. | |
name: Run linters | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
lint: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Installing modules | |
run: npm i | |
- name: Running linters | |
run: npm run lint:all |