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
wait-on: sleep 15 # there is no reliable URL to wait for...
43
44
command: npx nx test:once web-component
45
+
46
+
- name: Ng spec tests for studio-web
47
+
run: |
48
+
npx nx build web-component
49
+
npx nx test:once studio-web
50
+
44
51
- name: Check that i18n and l10n are up to date
45
52
run: |
46
53
npx nx extract-i18n studio-web
47
54
if diff -w <(git show HEAD:packages/studio-web/src/i18n/messages.json | sort) <(sort < packages/studio-web/src/i18n/messages.json); then echo OK: The i18n database is up to date.; else echo ERROR: The i18n database is out of date.; npx nx check-l10n studio-web || echo ERROR: The l10n databases are also out of date.; false; fi
48
55
if npx nx check-l10n studio-web; then echo OK: The l10n databases are up to date.; else echo ERROR: An l10n database is out of date.; false; fi
56
+
49
57
- name: make sure the WP plugin zip file is in sync
50
58
run: |
51
59
cd packages/web-component/wordpress-plugin
@@ -54,12 +62,14 @@ jobs:
54
62
echo The zipped WordPress plugin packages/web-component/wordpress-plugin/read-along-web-app-loader.zip is out of date.; \
0 commit comments