E2E matrix (Windows) #572
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: E2E matrix (Windows) | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | |
required: false | |
default: false | |
jobs: | |
e2e: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
node_version: | |
- '16' | |
package_manager: | |
- npm | |
packages: | |
- e2e-angular-core | |
- e2e-angular-extensions | |
- e2e-nx-run,e2e-nx-misc,e2e-nx-plugin | |
- e2e-jest | |
- e2e-linter | |
- e2e-cypress | |
- e2e-react | |
- e2e-next | |
- e2e-node | |
- e2e-web | |
- e2e-storybook,e2e-storybook-angular | |
- e2e-workspace-create | |
- e2e-add-nx-to-monorepo | |
- e2e-dep-graph-client | |
fail-fast: false | |
name: ${{ matrix.packages }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node_version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node_version }} | |
registry-url: https://localhost:4872 | |
- name: Yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Cache yarn | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: windows-node-${{ matrix.node_version }}-yarn-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
windows-node-${{ matrix.node_version }}-yarn- | |
windows-node-${{ matrix.node_version }}- | |
windows- | |
- name: Install packages | |
run: yarn install --prefer-offline --frozen-lockfile --non-interactive | |
- name: Run e2e tests | |
run: yarn nx run-many --target=e2e --projects="${{ join(matrix.packages) }}" --parallel=1 | |
env: | |
GIT_AUTHOR_EMAIL: [email protected] | |
GIT_AUTHOR_NAME: Test | |
GIT_COMMITTER_EMAIL: [email protected] | |
GIT_COMMITTER_NAME: Test | |
NX_E2E_CI_CACHE_KEY: e2e-gha-windows-${{ matrix.node_version }}-${{ matrix.package_manager }} | |
NX_E2E_RUN_CYPRESS: ${{ 'true' }} | |
NODE_OPTIONS: --max_old_space_size=8192 | |
SELECTED_PM: ${{ matrix.package_manager }} | |
npm_config_registry: https://localhost:4872 | |
NX_VERBOSE_LOGGING: ${{ 'true' }} | |
NX_E2E_SKIP_BUILD_CLEANUP: ${{ 'true' }} | |
NX_CACHE_DIRECTORY: ${{ 'tmp' }} | |
- name: Setup tmate session | |
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled && failure() }} | |
uses: mxschmitt/[email protected] | |
with: | |
sudo: false # disable sudo for windows debugging | |
report-success: | |
if: ${{ github.repository_owner == 'nrwl' && github.event_name == 'workflow_dispatch' }} # only once it's fixed on manual dispatch | |
needs: e2e | |
runs-on: ubuntu-latest | |
name: Report success | |
steps: | |
- name: Send notification | |
uses: ravsamhq/notify-slack-action@v1 | |
with: | |
status: ${{ needs.e2e.result }} | |
message_format: '{emoji} *{workflow}* {status_message} (last commit <{commit_url}|{commit_sha}>)' | |
notification_title: '{workflow} has {status_message}' | |
footer: '<{run_url}|View Run>' | |
mention_users: 'U01UELKLYF2,U9NPA6C90' | |
mention_users_when: 'failure,warnings' | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }} | |
report: | |
if: ${{ always() && github.repository_owner == 'nrwl' && github.event_name != 'workflow_dispatch' }} | |
needs: e2e | |
runs-on: ubuntu-latest | |
name: Report status | |
steps: | |
- name: Send notification | |
uses: ravsamhq/notify-slack-action@v1 | |
with: | |
status: ${{ needs.e2e.result }} | |
message_format: '{emoji} *{workflow}* {status_message} (last commit <{commit_url}|{commit_sha}>)' | |
notification_title: '{workflow} has {status_message}' | |
footer: '<{run_url}|View Run>' | |
mention_users: 'U01UELKLYF2,U9NPA6C90' | |
mention_users_when: 'failure,warnings' | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }} |