Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Nebyt committed Jun 23, 2024
1 parent b7b3409 commit 91b69b4
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/e2e-tests-ext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Read .nvmrc
id: nvm
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT

- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"

- name: npm install
run: |
. install-all.sh
Expand Down Expand Up @@ -93,7 +102,10 @@ jobs:

- name: unzip app
working-directory: ./packages/yoroi-extension
run: unzip builtApp.zip
run:
ls -A
mv builtApp builtApp.zip
unzip builtApp.zip

- name: Run tests
working-directory: ./packages/e2e-tests
Expand Down

0 comments on commit 91b69b4

Please sign in to comment.