cycle-todo-dwim
#12
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: 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 Fluxbox | |
# run: sudo apt-get update && sudo apt-get install -y fluxbox | |
# | |
# # Emulate a virtual framebuffer on machines with no display hardware | |
# - name: Run XVFB | |
# run: Xvfb :1 -screen 0 1024x768x24 >/dev/null 2>&1 & | |
# | |
# # Start a lightweight window manager to simulate window actions (maximize,restore etc) | |
# - name: Start Fluxbox | |
# run: DISPLAY=:1.0 fluxbox >/dev/null 2>&1 & | |
- 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 | |
with: | |
name: e2e-test-report | |
path: e2e-dump/* | |
retention-days: 1 | |
- name: Save electron app logs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: electron-logs | |
path: tmp/user-home/.config/Logseq/logs/main.log | |
retention-days: 1 |