workflow: Add lint workflow

This commit is contained in:
Tee
2021-03-18 23:48:02 -04:00
parent 32e9bfb578
commit f3778623c6

View File

@ -20,7 +20,13 @@ jobs:
node-version: 12
- name: 'Install dependencies'
run: 'npm i'
run: 'npm ci'
- name: 'Format SDK'
run: 'npm run prettier'
- name: 'Lint SDK'
run: 'npm run lint'
- name: 'Test SDK'
run: 'npm run test'