Skip to content

Commit

Permalink
the script do not enter in the folder
Browse files Browse the repository at this point in the history
- trying tp fix for the error
  • Loading branch information
kalwalt committed Sep 14, 2023
1 parent 53b492f commit 237d87c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ jobs:
with:
node-version: '16.x'
- name: create and enter in the build directory
run: cd tests && mkdir build && cd build
run: |
cd tests && mkdir build && cd build
- name: Build
run: cmake ..
- name: Test
run: cd bin/Debug && ./webarkit_test.exe
run: |
cd bin/Debug && ./webarkit_test.exe

0 comments on commit 237d87c

Please sign in to comment.