Skip to content

Commit

Permalink
Place vsix path in env
Browse files Browse the repository at this point in the history
  • Loading branch information
PEZ committed Nov 6, 2024
1 parent dc2e5c1 commit a9e937d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ jobs:
pattern: '*.vsix'
merge-multiple: true

- name: Get VSIX File Name
id: get-vsix-name
run: echo "VSIX_NAME=$(ls /tmp/*.vsix)" >> $GITHUB_ENV

- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -128,7 +132,7 @@ jobs:
- name: Run Tests
uses: coactions/setup-xvfb@v1
with:
run: bb run-e2e-tests-vsix $(ls /tmp/*.vsix)
run: bb run-e2e-tests-vsix ${{ env.VSIX_NAME }}

lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit a9e937d

Please sign in to comment.