Add federated_group share type #26
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
name: Lint | |
on: pull_request | |
jobs: | |
node-linters: | |
runs-on: ubuntu-latest | |
name: Check types | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: npm install | |
run: npm i | |
- name: Check types | |
run: npm run check-types |