-
Notifications
You must be signed in to change notification settings - Fork 1.4k
44 lines (42 loc) · 1.3 KB
/
e2e-tests.yml
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
name: E2E tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-e2e:
strategy:
matrix:
# Disabled windows because it's too slow
# See: https://github.com/NomicFoundation/hardhat/issues/5247
os: [ubuntu-latest, macos-latest]
name: Run E2E tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
# TODO: the e2e tests fail on windows when pnpm is used,
# for what we think is a bug in pnpm. We set this env
# variable to skip that combination until we find a solution.
#
# The failure is caused by `pnpm hardhat init` executing
# `hardhat init` twice on windows, which results in the
# second execution failing because `hardhat init` cannot
# be run on an existing project.
IS_WINDOWS: ${{ matrix.os == 'windows-latest' }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-env
- name: Run fixture-projects script
run: |
cd e2e
chmod +x run-fixture-projects.sh
./run-fixture-projects.sh
shell: bash
- name: Run test-project-initialization script
run: |
cd e2e
chmod +x test-project-initialization.sh
./test-project-initialization.sh
shell: bash