Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Leetfs committed Dec 11, 2024
1 parent 8a33ce2 commit 54b15e6
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions .github/workflows/make-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,36 @@ on:
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
debian:
runs-on: debian-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install dependencies with Yarn
run: yarn install

- name: make
run: yarn make

windows:
runs-on: windows-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install dependencies with Yarn
run: yarn install

- name: make
run: yarn make

macos:
runs-on: macos-latest
steps:
- name: checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 54b15e6

Please sign in to comment.