edit workflow
Some checks failed
Playwright Tests / test (push) Failing after 12s

This commit is contained in:
parent 810f08949a
commit cce6c5d492
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C
2 changed files with 16 additions and 6 deletions

@ -4,7 +4,11 @@ root = true
end_of_line = lf
insert_final_newline = true
[*.{js,json,yml,ts,tsx,jsx}]
[*.{js,json,ts,tsx,jsx}]
charset = utf-8
indent_style = tab
indent_size = 2
[*.yml]
indent_style = space
indent_size = 2

@ -14,11 +14,17 @@ jobs:
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g yarn && yarn
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Run Playwright tests
run: yarn playwright test
run: |
apt-get update
apt-get install -y jq
curled=$(curl -L https://github.com/obsidianmd/obsidian-releases/raw/refs/heads/master/desktop-releases.json | jq .latestVersion)
dpkg -i "https://github.com/obsidianmd/obsidian-releases/releases/download/v$curled/obsidian_$curled_amd64.deb"
corepack enable
yarn install
cd packages/test-project
yarn playwright install --with-deps
yarn workspace obsidian-testing-framework run tsc
yarn playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with: