fix: added validation for gps and network provider permissions separa… #120
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: Validate | |
on: [push] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: Linter | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "18.x" | |
cache: "yarn" | |
- run: yarn | |
- run: yarn validate:eslint | |
tsc: | |
runs-on: ubuntu-latest | |
name: TypeScript | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "18.x" | |
cache: "yarn" | |
- run: yarn | |
- run: yarn validate:typescript |