Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
fionnachan committed Sep 25, 2024
1 parent 7a80c9e commit 4746ab0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 21 deletions.
22 changes: 1 addition & 21 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,30 +104,10 @@ jobs:

- name: Check formatting with ESLint
run: yarn lint

free-disk-space:
name: Free Disk Space (Ubuntu)
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false

# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: false
swap-storage: true

e2e-tests:
name: "E2E Tests"
needs: [free-disk-space, build, check-files]
needs: [build, check-files]
uses: ./.github/workflows/e2e-tests.yml
with:
test_type: 'regular'
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,22 @@ jobs:
test: ${{ fromJson(needs.load-e2e-files.outputs.matrix) }}

steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false

# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: false
swap-storage: true

- name: Checkout
uses: actions/checkout@v4

Expand Down

0 comments on commit 4746ab0

Please sign in to comment.