You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker build --cache-from $WEB_IMAGE --target development --tag web-dev ./web
74
74
75
+
- name: Run Web tests
76
+
if: ${{ false }} # disable for now as they do not currently work
77
+
run: docker compose -f docker-compose.yml -f docker-compose.ci.yml run --rm web yarn test
78
+
75
79
test-docs:
76
80
name: test-docs
77
81
runs-on: ubuntu-latest
78
82
79
83
steps:
80
84
# If you know your docs does not rely on anything outside of the documentation folder, the commented out code below can be used to only test the docs build if the documentation folder changes.
81
-
- name: "Checkout GitHub Action"
85
+
- name: Checkout GitHub Action
82
86
uses: actions/checkout@main
83
87
# with:
84
88
# fetch-depth: 0
@@ -88,7 +92,7 @@ jobs:
88
92
# shell: bash
89
93
# run: echo "changes=$(git diff --name-only $(git merge-base HEAD origin/main) HEAD | grep documentation/ | wc -l)" >> $GITHUB_OUTPUT
0 commit comments