Commit 2d03f28 1 parent 4837e18 commit 2d03f28 Copy full SHA for 2d03f28
File tree 1 file changed +17
-1
lines changed
1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
2
on : [push]
3
+
4
+ env :
5
+ ZINNIA_VERSION : v0.20.2
3
6
jobs :
4
7
build :
5
8
runs-on : ubuntu-latest
6
9
steps :
7
10
- uses : actions/checkout@v4
8
- - run : curl -L https://github.com/filecoin-station/zinnia/releases/download/v0.20.2 /zinnia-linux-x64.tar.gz | tar -xz
11
+ - run : curl -L https://github.com/filecoin-station/zinnia/releases/download/${{ env.ZINNIA_VERSION }} /zinnia-linux-x64.tar.gz | tar -xz
9
12
- uses : actions/setup-node@v4
10
13
- run : npx standard
11
14
- run : ./zinnia run test.js
15
+
16
+ test-windows :
17
+ runs-on : windows-latest
18
+ steps :
19
+ - uses : actions/checkout@v4
20
+ - uses : robinraju/release-downloader@v1.11
21
+ with :
22
+ repository : ' filecoin-station/zinnia'
23
+ tag : ${{ env.ZINNIA_VERSION }}
24
+ fileName : zinnia-windows-x64.zip
25
+ extract : true
26
+ token : ${{ secrets.GITHUB_TOKEN }}
27
+ - run : ./zinnia.exe run test.js
You can’t perform that action at this time.
0 commit comments