Skip to content

feat(desktop): add Tauri shell #2113

feat(desktop): add Tauri shell

feat(desktop): add Tauri shell #2113

Workflow file for this run

name: ci
on:
push:
pull_request:
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install
run: npm run ci:install
- name: Lint
run: npm run ci:lint
- name: Test
env:
WEB_UI_PARITY_BASE_REF: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || '' }}
run: npm run ci:test