feat: fix problem of react-modal warning in browser #28
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: Nx Distributed Tasks | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: git fetch --no-tags --prune --depth=1 origin main | |
- run: yarn install | |
- run: yarn nx affected --target=test --base=origin/main --parallel | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: git fetch --no-tags --prune --depth=1 origin main | |
- run: yarn install | |
- run: yarn nx affected --target=lint --base=origin/main --parallel | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: git fetch --no-tags --prune --depth=1 origin main | |
- run: yarn install | |
- run: yarn nx affected --target=build --base=origin/main --prod --parallel |