Fix pfam filter button issues #2677
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
# Ensure that affected projects build without error for any pull request | |
name: CI | |
on: pull_request | |
permissions: read-all | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '14' | |
cache: 'yarn' | |
- uses: nrwl/[email protected] | |
- run: yarn | |
- run: yarn nx affected --target=build-npm-modules --parallel=3 | |
- run: yarn nx affected --target=compile:check |