ci(ga): update release workflow #93
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: Test Workflow | |
on: | |
# Triggers the workflow on push events | |
push: | |
branches: | |
- master | |
- next | |
- 'release/*' | |
# Triggers the workflow on pull request events | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
permissions: | |
contents: read | |
env: | |
NX_CLOUD_DISTRIBUTED_EXECUTION: false | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v2 | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.ref || github.ref }} | |
fetch-depth: 0 | |
- name: Setup NX | |
uses: nrwl/nx-set-shas@v2 | |
with: | |
main-branch-name: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || github.ref }} | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: npm-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
npm-node- | |
- name: Install Deps | |
run: npm ci --ignore-scripts | |
- name: Test | |
run: npm run affected:test -- --parallel | |
- name: Lint | |
run: npm run affected:lint -- --parallel | |
- name: Build | |
run: npm run affected:build -- --parallel |