Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
20 changes: 20 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,3 +207,23 @@ jobs:
name: ${{ matrix.package.name }}-${{ matrix.package.shardIndex }}-test-results
path: packages/**/test-results
retention-days: 30

smoke-test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
lfs: 'true'

- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

- name: Run smoke test
run: ./smoke-test.sh -dn
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ npm-debug.log
*.sublime-project
*.sublime-workspace
*.docx
*.tgz

.idea/
.vscode/
Expand Down
2 changes: 1 addition & 1 deletion .npmrc
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CYPRESS_INSTALL_BINARY=0
puppeteer_skip_chromium_download=true
legacy-peer-deps=true
progress=false
progress=false
Loading
Loading