Fix locking notes with empty content #2550
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test @notesnook/web | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "master" | |
paths: | |
- "apps/web/**" | |
# re-run workflow if workflow file changes | |
- ".github/workflows/web.tests.yml" | |
pull_request: | |
types: | |
- "ready_for_review" | |
- "opened" | |
- "synchronize" | |
- "reopened" | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: ./.github/actions/setup-node-with-cache | |
- name: Install packages | |
run: | | |
npm ci --ignore-scripts --prefer-offline --no-audit | |
npm run bootstrap -- --scope=web | |
- name: Setup environment | |
run: | | |
echo "NX_CLOUD_ACCESS_TOKEN=${{ secrets.NX_CLOUD_ACCESS_TOKEN }}" >> $GITHUB_ENV | |
- name: Generate test build | |
run: npm run build:test:web | |
- name: Archive build artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: apps/web/build/**/* | |
test: | |
needs: build | |
name: 🧪 Test (${{ matrix.shard }}/${{ strategy.job-total }}) | |
strategy: | |
matrix: | |
shard: [1, 2, 3, 4] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download build | |
uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: ./apps/web/build | |
- name: Setup Node | |
uses: ./.github/actions/setup-node-with-cache | |
- name: Install packages | |
run: | | |
npm ci --ignore-scripts --prefer-offline --no-audit | |
npm install -D @playwright/test otplib dayjs @zip.js/zip.js | |
- name: Validate build extraction | |
run: ls -ld ./apps/web/build/index.html | |
- name: Install Playwright Browsers | |
run: npx playwright install chromium --with-deps | |
working-directory: apps/web | |
- name: Add environment variables | |
run: | | |
echo "USER_EMAIL=${{ secrets.USER_EMAIL }}" >> $GITHUB_ENV | |
echo "USER_PASSWORD=${{ secrets.USER_PASSWORD }}" >> $GITHUB_ENV | |
echo "USER_TOTP_SECRET=${{ secrets.USER_TOTP_SECRET }}" >> $GITHUB_ENV | |
echo "USER_KEY=${{ secrets.USER_KEY }}" >> $GITHUB_ENV | |
- name: Run tests | |
run: npx playwright test --shard=${{ matrix.shard }}/${{ strategy.job-total }} | |
working-directory: apps/web | |
- name: Upload test results | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: test-results-${{ matrix.shard }} | |
path: apps/web/test-results | |
retention-days: 5 |