Skip to content

Commit

Permalink
Define Github Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hron committed Nov 28, 2024
1 parent 5ae5f3d commit d7ad951
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 1 deletion.
87 changes: 87 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
name: CI

on:
push:
branches: [main]
paths-ignore:
- '*.md'
pull_request:
branches: [main]
paths-ignore:
- '*.md'

env:
NODE_VERSION: '18'

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
cache-dependency-path: |
yarn.lock
- run: yarn install
- run: yarn run lint

format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
cache-dependency-path: |
yarn.lock
- run: yarn install
- run: yarn run format

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
cache-dependency-path: |
yarn.lock
- name: Fetch yarn deps
run: yarn install --frozen-lockfile
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true

- run: yarn run build

- run: yarn run e2e:prepare

- name: Install Electron deps
run: sudo apt-get update && sudo apt-get install -y libfuse2

- name: Run Playwright tests
run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npx playwright test --reporter github

- name: Save test artifacts
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: e2e-test-report
path: e2e-dump/*
retention-days: 1

- name: Save electron app logs
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: electron-logs
path: tmp/user-home/.config/Logseq/logs/
retention-days: 1
6 changes: 5 additions & 1 deletion e2e-tests/fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ const consoleLogWatcher = (msg: ConsoleMessage) => {
const text = msg.text()

// List of error messages to ignore
const ignoreErrors = [/net/, /^Error with Permissions-Policy header:/]
const ignoreErrors = [
/net/,
/^Error with Permissions-Policy header:/,
/^Error while restoring repos/,
]

// If the text matches any of the ignoreErrors, return early
if (ignoreErrors.some((error) => text.match(error))) {
Expand Down

0 comments on commit d7ad951

Please sign in to comment.