[pull] master from backstage:master #1529
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
# Building on windows is really slow, so this workflow is separate from e2e.yml and only builds on changes | |
# to the cli itself. They're more likely to introduce issues on windows, compared to changes to core and yarn.lock. | |
name: E2E Windows | |
on: | |
# NOTE: If you change these you must update verify_e2e-windows-noop.yml as well | |
pull_request: | |
paths: | |
- 'yarn.lock' | |
- '.github/workflows/verify_e2e-windows.yml' | |
- 'packages/cli/**' | |
- 'packages/e2e-test/**' | |
- 'packages/create-app/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: windows-2022 | |
strategy: | |
matrix: | |
node-version: [20.x, 22.x] | |
env: | |
CI: true | |
NODE_OPTIONS: --max-old-space-size=8192 --no-node-snapshot | |
name: E2E Windows ${{ matrix.node-version }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
# In order to have the create-app template function as if it was downloaded from NPM | |
# we need to make sure we checkout files with LF line endings only | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Configure Git | |
run: | | |
git config --global user.email [email protected] | |
git config --global user.name 'GitHub e2e user' | |
- name: use node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: https://registry.npmjs.org/ # Needed for auth | |
- name: setup python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: '3.10' | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce # v2.0.0 | |
- name: Setup gyp env | |
run: | | |
echo 'GYP_MSVS_VERSION=2022' >> $Env:GITHUB_ENV | |
echo 'GYP_MSVS_OVERRIDE_PATH=C:\\Dummy' >> $Env:GITHUB_ENV | |
- name: Install latest gyp and set node-gyp path | |
shell: powershell | |
run: | | |
npm prefix -g | % {npm config set dev_dir "c:\temp\.gyp2"} | |
npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"} | |
- name: setup chrome | |
uses: browser-actions/setup-chrome@803ef6dfb4fdf22089c9563225d95e4a515820a0 # latest | |
- name: yarn install | |
uses: backstage/actions/yarn-install@25145dd4117d50e1da9330e9ed2893bc6b75373e # v0.6.15 | |
with: | |
cache-prefix: ${{ runner.os }}-v${{ matrix.node-version }} | |
- run: yarn tsc | |
- run: yarn backstage-cli repo build | |
- name: run E2E test | |
run: yarn e2e-test run | |
env: | |
DEBUG: zombie | |
CYPRESS_VERIFY_TIMEOUT: 600000 |