-
Notifications
You must be signed in to change notification settings - Fork 8
45 lines (40 loc) · 1.02 KB
/
build-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.x.x
- name: Restore fable
run: dotnet tool restore
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 16
- name: install node modules
working-directory: ./
run: npm install --ignore-scripts
- name: install node modules ISA
working-directory: ./src/ISA
run: npm install
- name: make script executable
if: matrix.os == 'ubuntu-latest'
run: chmod u+x build.sh
- name: Test (Unix)
if: matrix.os == 'ubuntu-latest'
working-directory: ./
run: ./build.sh runtests
- name: Test (Windows)
if: matrix.os == 'windows-latest'
run: .\build.cmd runtests