Skip to content

Commit

Permalink
Workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennykorsukewitz committed Feb 5, 2024
1 parent 1ae581e commit c42bd23
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@ name: UnitTest
# Controls when the action will run.
on:
push:
# branches: ["dev", "dev-update"]
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

jobs:
UnitTest:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, macos-latest]
# os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand All @@ -30,6 +32,3 @@ jobs:
- if: runner.os == 'Linux'
run: xvfb-run --auto-servernum --server-args='-screen 0 1024x768x24' npm run test

- if: runner.os == 'Windows'
run: npm run test

0 comments on commit c42bd23

Please sign in to comment.