|
8 | 8 |
|
9 | 9 |
|
10 | 10 | jobs: |
11 | | - testfable3: |
12 | | - runs-on: ubuntu-latest |
13 | | - |
14 | | - steps: |
15 | | - - uses: actions/checkout@v2 |
16 | | - - name: Restore |
17 | | - run: git submodule update --init --recursive |
18 | | - - name: Remove global json |
19 | | - run: rm global.json |
20 | | - - name: Setup .NET Core |
21 | | - uses: actions/setup-dotnet@v3 |
22 | | - with: |
23 | | - dotnet-version: | |
24 | | - 6.0.x |
25 | | - - name: Restore tools |
26 | | - run: dotnet tool restore |
27 | | - - name: Create global.json |
28 | | - working-directory: tests/FSharpPlusFable.Tests |
29 | | - run: mv fable3-global.json global.json |
30 | | - - name: Install fable |
31 | | - run: dotnet tool install --global Fable --version 3.7.22 |
32 | | - - name: Use Node.js |
33 | | - uses: actions/setup-node@v1 |
34 | | - with: |
35 | | - node-version: '12.x' |
36 | | - - name: Install npm dependencies |
37 | | - working-directory: tests/FSharpPlusFable.Tests |
38 | | - run: npm install |
39 | | - - name: Run Fable tests |
40 | | - working-directory: tests/FSharpPlusFable.Tests |
41 | | - run: fable . --outDir bin --runScript ./bin |
| 11 | + #testfable3: |
| 12 | + # runs-on: ubuntu-latest |
| 13 | + # |
| 14 | + # steps: |
| 15 | + # - uses: actions/checkout@v2 |
| 16 | + # - name: Restore |
| 17 | + # run: git submodule update --init --recursive |
| 18 | + # - name: Remove global json |
| 19 | + # run: rm global.json |
| 20 | + # - name: Setup .NET Core |
| 21 | + # uses: actions/setup-dotnet@v3 |
| 22 | + # with: |
| 23 | + # dotnet-version: | |
| 24 | + # 6.0.x |
| 25 | + # - name: Restore tools |
| 26 | + # run: dotnet tool restore |
| 27 | + # - name: Create global.json |
| 28 | + # working-directory: tests/FSharpPlusFable.Tests |
| 29 | + # run: mv fable3-global.json global.json |
| 30 | + # - name: Install fable |
| 31 | + # run: dotnet tool install --global Fable --version 3.7.22 |
| 32 | + # - name: Use Node.js |
| 33 | + # uses: actions/setup-node@v1 |
| 34 | + # with: |
| 35 | + # node-version: '12.x' |
| 36 | + # - name: Install npm dependencies |
| 37 | + # working-directory: tests/FSharpPlusFable.Tests |
| 38 | + # run: npm install |
| 39 | + # - name: Run Fable tests |
| 40 | + # working-directory: tests/FSharpPlusFable.Tests |
| 41 | + # run: fable . --outDir bin --runScript ./bin |
42 | 42 |
|
43 | 43 | testfable4: |
44 | 44 | runs-on: ubuntu-latest |
|
0 commit comments