Bump braces and lerna #14
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 | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Begin CI... | |
uses: actions/checkout@v2 | |
- name: Use Node 12 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- name: Install | |
run: npm install | |
# must run first to build schemas. | |
- name: Build | |
run: npm run build:all | |
- name: Lint | |
run: npm run lint | |
- name: Test Schemas | |
run: npm run test:schemas | |
- name: Test Credentials | |
run: npm run test:credentials |