418 lines
13 KiB
YAML
418 lines
13 KiB
YAML
name: E2E matrix (Windows)
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
inputs:
|
|
debug_enabled:
|
|
type: boolean
|
|
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
|
|
required: false
|
|
default: false
|
|
|
|
env:
|
|
CYPRESS_CACHE_FOLDER: ${{ github.workspace }}/.cypress
|
|
|
|
permissions: {}
|
|
jobs:
|
|
preinstall:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
node_version:
|
|
- 19
|
|
- 18
|
|
- 16
|
|
|
|
name: Cache install (node v${{ matrix.node_version }})
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install PNPM
|
|
run: |
|
|
npm install -g @pnpm/exe@8.3.1
|
|
|
|
- name: Set node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node_version }}
|
|
cache: 'pnpm'
|
|
|
|
- name: Cache node_modules
|
|
id: cache-modules
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: '**/node_modules'
|
|
key: ${{ runner.os }}-modules-${{ matrix.node_version }}-${{ github.run_id }}
|
|
|
|
- name: Install packages
|
|
if: steps.cache-modules.outputs.cache-hit != 'true'
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Cache Cypress
|
|
id: cache-cypress
|
|
uses: actions/cache@v3
|
|
with:
|
|
lookup-only: true
|
|
path: '${{ github.workspace }}/.cypress'
|
|
key: windows-cypress
|
|
|
|
- name: Install Cypress
|
|
if: steps.cache-cypress.outputs.cache-hit != 'true'
|
|
run: npx cypress install
|
|
|
|
e2e:
|
|
needs: preinstall
|
|
permissions:
|
|
contents: read
|
|
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
node_version:
|
|
- 19
|
|
- 18
|
|
- 16
|
|
package_manager:
|
|
- npm
|
|
project:
|
|
- e2e-angular-core
|
|
- e2e-angular-extensions
|
|
- e2e-cypress
|
|
- e2e-esbuild
|
|
- e2e-jest
|
|
- e2e-js
|
|
- e2e-lerna-smoke-tests
|
|
- e2e-linter
|
|
- e2e-next
|
|
- e2e-node
|
|
- e2e-nx-init
|
|
- e2e-nx-misc
|
|
- e2e-nx-plugin
|
|
- e2e-nx-run
|
|
- e2e-react-core
|
|
- e2e-react-extensions
|
|
- e2e-web
|
|
- e2e-rollup
|
|
- e2e-storybook
|
|
- e2e-storybook-angular
|
|
- e2e-vite
|
|
- e2e-webpack
|
|
- e2e-workspace-create
|
|
- e2e-workspace-create-npm
|
|
include:
|
|
# codeowner groups
|
|
- project: e2e-angular-core
|
|
codeowners: 'S04SS457V38'
|
|
- project: e2e-angular-extensions
|
|
codeowners: 'S04SS457V38'
|
|
- project: e2e-cypress
|
|
codeowners: 'S04T16BTJJY'
|
|
- project: e2e-esbuild
|
|
codeowners: 'S04SJ6HHP0X'
|
|
- project: e2e-jest
|
|
codeowners: 'S04T16BTJJY'
|
|
- project: e2e-js
|
|
codeowners: 'S04SJ6HHP0X'
|
|
- project: e2e-lerna-smoke-tests
|
|
codeowners: 'S04TNCVEETS'
|
|
- project: e2e-linter
|
|
codeowners: 'S04SYJGKSCT'
|
|
- project: e2e-next
|
|
codeowners: 'S04TNCNJG5N'
|
|
- project: e2e-node
|
|
codeowners: 'S04SJ6HHP0X'
|
|
- project: e2e-nx-init
|
|
codeowners: 'S04SYHYKGNP'
|
|
- project: e2e-nx-misc
|
|
codeowners: 'S04SYHYKGNP'
|
|
- project: e2e-nx-plugin
|
|
codeowners: 'S04SYHYKGNP'
|
|
- project: e2e-nx-run
|
|
codeowners: 'S04SYHYKGNP'
|
|
- project: e2e-react-core
|
|
codeowners: 'S04TNCNJG5N'
|
|
- project: e2e-react-extensions
|
|
codeowners: 'S04TNCNJG5N'
|
|
- project: e2e-web
|
|
codeowners: 'S04SJ6PL98X'
|
|
- project: e2e-rollup
|
|
codeowners: 'S04SJ6PL98X'
|
|
- project: e2e-storybook
|
|
codeowners: 'S04SVQ8H0G5'
|
|
- project: e2e-storybook-angular
|
|
codeowners: 'S04SVQ8H0G5'
|
|
- project: e2e-vite
|
|
codeowners: 'S04SJ6PL98X'
|
|
- project: e2e-webpack
|
|
codeowners: 'S04SJ6PL98X'
|
|
- project: e2e-workspace-create
|
|
codeowners: 'S04SYHYKGNP'
|
|
- project: e2e-workspace-create-npm
|
|
codeowners: 'S04SYHYKGNP'
|
|
exclude:
|
|
# exclude non-CNW/Lerna tests from non-LTS node versions
|
|
- node_version: 16
|
|
project: e2e-angular-core
|
|
- node_version: 16
|
|
project: e2e-angular-extensions
|
|
- node_version: 16
|
|
project: e2e-cypress
|
|
- node_version: 16
|
|
project: e2e-esbuild
|
|
- node_version: 16
|
|
project: e2e-jest
|
|
- node_version: 16
|
|
project: e2e-js
|
|
- node_version: 16
|
|
project: e2e-linter
|
|
- node_version: 16
|
|
project: e2e-next
|
|
- node_version: 16
|
|
project: e2e-node
|
|
- node_version: 16
|
|
project: e2e-nx-init
|
|
- node_version: 16
|
|
project: e2e-nx-misc
|
|
- node_version: 16
|
|
project: e2e-nx-plugin
|
|
- node_version: 16
|
|
project: e2e-lerna-smoke-tests
|
|
- node_version: 16
|
|
project: e2e-react-core
|
|
- node_version: 16
|
|
project: e2e-react-extensions
|
|
- node_version: 16
|
|
project: e2e-web
|
|
- node_version: 16
|
|
project: e2e-rollup
|
|
- node_version: 16
|
|
project: e2e-storybook
|
|
- node_version: 16
|
|
project: e2e-storybook-angular
|
|
- node_version: 16
|
|
project: e2e-vite
|
|
- node_version: 16
|
|
project: e2e-webpack
|
|
- node_version: 19
|
|
project: e2e-angular-core
|
|
- node_version: 19
|
|
project: e2e-angular-extensions
|
|
- node_version: 19
|
|
project: e2e-cypress
|
|
- node_version: 19
|
|
project: e2e-esbuild
|
|
- node_version: 19
|
|
project: e2e-jest
|
|
- node_version: 19
|
|
project: e2e-js
|
|
- node_version: 19
|
|
project: e2e-linter
|
|
- node_version: 19
|
|
project: e2e-next
|
|
- node_version: 19
|
|
project: e2e-node
|
|
- node_version: 19
|
|
project: e2e-nx-init
|
|
- node_version: 19
|
|
project: e2e-nx-misc
|
|
- node_version: 19
|
|
project: e2e-nx-plugin
|
|
- node_version: 19
|
|
project: e2e-lerna-smoke-tests
|
|
- node_version: 19
|
|
project: e2e-react-core
|
|
- node_version: 19
|
|
project: e2e-react-extensions
|
|
- node_version: 19
|
|
project: e2e-web
|
|
- node_version: 19
|
|
project: e2e-rollup
|
|
- node_version: 19
|
|
project: e2e-storybook
|
|
- node_version: 19
|
|
project: e2e-storybook-angular
|
|
- node_version: 19
|
|
project: e2e-vite
|
|
- node_version: 19
|
|
project: e2e-webpack
|
|
fail-fast: false
|
|
|
|
name: ${{ matrix.project }} (v${{ matrix.node_version }})
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Prepare dir for output
|
|
run: mkdir -p outputs
|
|
|
|
- name: Install PNPM
|
|
run: |
|
|
npm install -g @pnpm/exe@8.3.1
|
|
|
|
- name: Use Node.js ${{ matrix.node_version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node_version }}
|
|
cache: 'pnpm'
|
|
registry-url: http://localhost:4872
|
|
|
|
- name: Cache node_modules
|
|
id: cache-modules
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: '**/node_modules'
|
|
key: ${{ runner.os }}-modules-${{ matrix.node_version }}-${{ github.run_id }}
|
|
|
|
- name: Install packages
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Cache Cypress
|
|
id: cache-cypress
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: '${{ github.workspace }}/.cypress'
|
|
key: ${{ runner.os }}-cypress
|
|
|
|
- name: Install Cypress
|
|
if: steps.cache-cypress.outputs.cache-hit != 'true'
|
|
run: npx cypress install
|
|
|
|
- name: Configure git metadata (needed for lerna smoke tests)
|
|
run: |
|
|
git config --global user.email test@test.com
|
|
git config --global user.name "Test Test"
|
|
|
|
- name: Run e2e tests
|
|
id: e2e-run
|
|
run: yarn nx run ${{ matrix.project }}:e2e
|
|
timeout-minutes: 120
|
|
env:
|
|
GIT_AUTHOR_EMAIL: test@test.com
|
|
GIT_AUTHOR_NAME: Test
|
|
GIT_COMMITTER_EMAIL: test@test.com
|
|
GIT_COMMITTER_NAME: Test
|
|
NX_E2E_CI_CACHE_KEY: e2e-gha-windows-${{ matrix.node_version }}-${{ matrix.package_manager }}
|
|
NODE_OPTIONS: --max_old_space_size=8192
|
|
SELECTED_PM: ${{ matrix.package_manager }}
|
|
npm_config_registry: http://localhost:4872
|
|
NX_CACHE_DIRECTORY: 'tmp'
|
|
NX_E2E_SKIP_BUILD_CLEANUP: 'true'
|
|
NX_E2E_RUN_CYPRESS: 'true'
|
|
NX_E2E_VERBOSE_LOGGING: 'true'
|
|
NX_PERF_LOGGING: 'false'
|
|
|
|
- name: Save matrix config in file
|
|
if: ${{ always() }}
|
|
id: save-matrix
|
|
shell: bash
|
|
run: |
|
|
matrix=$((
|
|
echo '${{ toJSON(matrix) }}'
|
|
) | jq -c '. + { "status": "${{ steps.e2e-run.outcome}}" }')
|
|
echo "$matrix" > matrix
|
|
path=outputs/windows-${{ matrix.node_version}}-${{ matrix.package_manager}}-${{ matrix.project }}
|
|
echo "path=$path" >> $GITHUB_OUTPUT
|
|
echo "$matrix" > $path
|
|
|
|
- name: Upload matrix config
|
|
uses: actions/upload-artifact@v3
|
|
if: ${{ always() }}
|
|
with:
|
|
name: outputs
|
|
path: ${{ steps.save-matrix.outputs.path }}
|
|
|
|
- name: Setup tmate session
|
|
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled && failure() }}
|
|
uses: mxschmitt/action-tmate@v3.8
|
|
timeout-minutes: 15
|
|
with:
|
|
sudo: false # disable sudo for windows debugging
|
|
|
|
process-result:
|
|
if: ${{ always() }}
|
|
runs-on: ubuntu-latest
|
|
needs: e2e
|
|
outputs:
|
|
message: ${{ steps.process-json.outputs.SLACK_MESSAGE }}
|
|
codeowners: ${{ steps.process-json.outputs.CODEOWNERS }}
|
|
steps:
|
|
- name: Load outputs
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: outputs
|
|
path: outputs
|
|
|
|
- name: Join and stringify matrix configs
|
|
id: combine-json
|
|
shell: bash
|
|
run: |
|
|
combined=$((jq -s . outputs/*) | jq tostring)
|
|
echo "combined=$combined" >> $GITHUB_OUTPUT
|
|
|
|
- name: Make slack outputs
|
|
id: process-json
|
|
uses: actions/github-script@v6
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
with:
|
|
script: |
|
|
const combined = JSON.parse(${{ steps.combine-json.outputs.combined }});
|
|
const failedProjects = combined.filter(c => c.status === 'failure').sort((a, b) => a.project.localeCompare(b.project));
|
|
|
|
// codeowners
|
|
const codeowners = new Set();
|
|
failedProjects.forEach(c => {
|
|
codeowners.add(c.codeowners);
|
|
});
|
|
core.setOutput('CODEOWNERS', Array.from(codeowners).join(','));
|
|
|
|
// message
|
|
let result = `
|
|
*OS* Windows
|
|
*Package manager* npm
|
|
\`\`\`
|
|
| Failed project | Node |
|
|
|--------------------------------|------|`;
|
|
failedProjects.forEach(matrix => {
|
|
result += `\n| ${matrix.project.padEnd(30)} | v${matrix.node_version.toString().padEnd(3)} |`
|
|
});
|
|
result += `\`\`\``;
|
|
const message = result.split('\n').map(l => l.trim()).join('\n');
|
|
core.setOutput('SLACK_MESSAGE', message);
|
|
|
|
report-failure:
|
|
if: ${{ failure() && github.repository_owner == 'nrwl' && github.event_name != 'workflow_dispatch' }}
|
|
needs: process-result
|
|
runs-on: ubuntu-latest
|
|
name: Report failure
|
|
steps:
|
|
- name: Send notification
|
|
uses: ravsamhq/notify-slack-action@v2
|
|
with:
|
|
status: 'failure'
|
|
message_format: '{emoji} Workflow has {status_message} ${{ needs.process-result.outputs.message }}'
|
|
notification_title: '{workflow}'
|
|
footer: '<{run_url}|View Run> / Last commit <{commit_url}|{commit_sha}>'
|
|
mention_groups: ${{ needs.process-result.outputs.codeowners }}
|
|
env:
|
|
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}
|
|
|
|
report-success:
|
|
if: ${{ success() && github.repository_owner == 'nrwl' && github.event_name != 'workflow_dispatch' }}
|
|
needs: e2e
|
|
runs-on: ubuntu-latest
|
|
name: Report success
|
|
steps:
|
|
- name: Send notification
|
|
uses: ravsamhq/notify-slack-action@v2
|
|
with:
|
|
status: ${{ needs.e2e.result }}
|
|
message_format: '{emoji} Workflow has {status_message}'
|
|
notification_title: '{workflow}'
|
|
footer: '<{run_url}|View Run> / Last commit <{commit_url}|{commit_sha}>'
|
|
env:
|
|
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}
|