-
Notifications
You must be signed in to change notification settings - Fork 44
36 lines (34 loc) · 1.15 KB
/
hydra-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
name: hydra-e2e-tests
on: [pull_request]
jobs:
run_e2e_tests:
name: run Hydra e2e tests
if: "!contains(github.event.head_commit.message, 'test skip')"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
#- uses: satackey/action-docker-layer-caching@v0.0.11
# Ignore the failure of a step and avoid terminating the job.
# continue-on-error: true
- name: build e2e tests
# We use `sudo rm -rf /usr/share/dotnet` as a workaround to free up some space,
# as suggested in https://github.com/actions/runner-images/issues/2606#issuecomment-772683150
# because by default the runner will run out of space.
run: |
sudo rm -rf /usr/share/dotnet
yarn
yarn build
- name: Docker login
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: run e2e test
run: |
yarn e2e-test