Just disable dates for bubbles #1061
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
# 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/nx-set-shas@v3.0.0 | |
- run: yarn | |
- run: yarn nx affected --target=build-npm-modules --parallel=3 | |
- run: yarn nx affected --target=compile:check |