-
-
Save lydemann/95121d5ed8188a9f311dab7a72fb956e to your computer and use it in GitHub Desktop.
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
# ci.yml | |
name: CI | |
env: | |
NODE_OPTIONS: --max-old-space-size=6144 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
builds: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v3 | |
with: | |
# Required by nrwl/nx-set-shas | |
fetch-depth: 0 | |
- name: | |
'Derive appropriate SHAs for base and head for `nx affected` commands' | |
uses: nrwl/nx-set-shas@v2 | |
- name: Set up dependencies | |
uses: ./.github/actions/setup-dependencies | |
- name: 'Build application if affected by changes in feature branch' | |
run: yarn affected:build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment