Skip to content

Commit

Permalink
chore(desktop): add unit test ci file
Browse files Browse the repository at this point in the history
  • Loading branch information
ysfscream authored and Red-Asuka committed Sep 3, 2024
1 parent df097af commit 89a7f0b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/units_test_desktop.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: units test desktop

on:
pull_request:
release:
types:
- published

jobs:
desktop_test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Install dependencies and run unit tests
run: |
yarn install
yarn test:unit

0 comments on commit 89a7f0b

Please sign in to comment.