Skip to content

Commit

Permalink
Merge branch 'master' into renovate/lock-file-maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
y-lakhdar authored Sep 27, 2023
2 parents 346e996 + c2a59ff commit b3c6022
Show file tree
Hide file tree
Showing 51 changed files with 834 additions and 1,176 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.

2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
node: ${{ matrix.node }}
spec: ${{ matrix.spec }}
cliConfigJson: ${{ env.CLI_CONFIG_JSON }}
npmRegistry: 'http://localhost:4873'
npmRegistry: 'http://127.0.0.1:4873'
e2e-teardown:
timeout-minutes: 15
name: End-to-end teardown
Expand Down
Loading

0 comments on commit b3c6022

Please sign in to comment.