Skip to content

Commit

Permalink
fix: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ratik committed Dec 12, 2023
1 parent c67a9ed commit 49c5ac9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ jobs:
- name: Lint
run: cd integration_tests && yarn --ignore-engines && yarn lint
- name: Build images
run: cd integration_tests && cat package.json | grep -e "build-[a-z]*-image\"" | sed -e 's/.*: "\(.*\)".*/\1/' | xargs -I % -P 3 sh -c %
run: |
cd integration_tests
cat package.json | grep -e "build-[a-z]*-image\"" | awk -F: \'{print $1}\' | tr -d ' ",{}' | xargs -I % -P 3 yarn %
- name: Run tests
run: cd integration_tests && yarn test

0 comments on commit 49c5ac9

Please sign in to comment.