wip #823
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: Push | |
on: push | |
jobs: | |
build: | |
name: Lint and build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v2 | |
- name: Use Node.js 14.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Install deps (with cache) | |
uses: bahmutov/[email protected] | |
with: | |
install-command: yarn --immutable | |
- name: Lint codebase | |
run: yarn eslint --ext .js,.ts,.jsx,.tsx . | |
- name: Build shared | |
run: yarn build | |
working-directory: packages/apollo-shared | |
- name: Build collaboration server | |
run: yarn build | |
working-directory: packages/apollo-collaboration-server | |
- name: Build plugin | |
run: yarn build | |
working-directory: packages/jbrowse-plugin-apollo |