Skip to content

Commit

Permalink
it might work
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-bompart committed Jul 7, 2023
1 parent b45a79b commit b4df32d
Show file tree
Hide file tree
Showing 8 changed files with 432 additions and 170 deletions.
8 changes: 6 additions & 2 deletions .github/actions/e2e-run/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ inputs:
description: 'The NPM Registry to use'
required: false
default: 'https://registry.npmjs.org/'
jestFlags:
description: 'Flags for Jest'
required: false
default: ''

runs:
using: composite
Expand Down Expand Up @@ -61,7 +65,7 @@ runs:
shell: bash
if: ${{inputs.os == 'windows-latest'}}
working-directory: packages/cli-e2e
run: npm run jest:ci -- ${{inputs.spec}}
run: npm run jest:ci -- ${{inputs.spec}} ${{inputs.flag}}
env:
npm_config_registry: ${{inputs.npmRegistry}}
- name: Tests
Expand All @@ -71,7 +75,7 @@ runs:
DISPLAY: ':1'
npm_config_registry: ${{inputs.npmRegistry}}
working-directory: packages/cli-e2e
run: npm run jest:ci -- ${{inputs.spec}}
run: npm run jest:ci -- ${{inputs.spec}} ${{inputs.flag}}
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
if: cancelled() || failure() || success()
with:
Expand Down
135 changes: 0 additions & 135 deletions .github/workflows/build-binaries.yml

This file was deleted.

Loading

0 comments on commit b4df32d

Please sign in to comment.