chore(integration-tests): refactor to typescript (#5645)

This commit is contained in:
Jacob Richman
2025-08-12 09:19:09 -07:00
committed by GitHub
parent 2d1a6af890
commit 804c181ac4
15 changed files with 163 additions and 57 deletions

View File

@@ -36,6 +36,14 @@ jobs:
- name: Run linter
run: npm run lint:ci
- name: Run linter on integration tests
run: npx eslint integration-tests --max-warnings 0
- name: Run formatter on integration tests
run: |
npx prettier --check integration-tests
git diff --exit-code
- name: Build project
run: npm run build