-
Notifications
You must be signed in to change notification settings - Fork 283
56 lines (54 loc) · 1.5 KB
/
windows-e2e.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: e2e tests on Windows
on:
workflow_dispatch:
push:
branches-ignore:
- 'dependabot/**'
pull_request: {}
defaults:
run:
shell: powershell
jobs:
check-paths:
uses: ./.github/workflows/paths-ignore.yaml
e2e-tests:
needs: check-paths
if: needs.check-paths.outputs.should-run == 'true'
timeout-minutes: 90
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/setup-environment
# For compatibility with runners without yarn, we need to install node
# once, install yarn, then install node again to get caching.
- uses: actions/setup-node@v4
with:
node-version-file: package.json
- run: corepack enable yarn
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: yarn
- uses: actions/setup-go@v5
with:
go-version-file: go.work
cache: 'true'
cache-dependency-path: src/go/**/go.sum
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip install setuptools
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run e2e Tests
run: yarn test:e2e
env:
RD_DEBUG_ENABLED: '1'
- name: Upload failure reports
uses: actions/upload-artifact@v4
if: always()
with:
name: e2etest-artifacts
path: ./e2e/reports/*