Skip to content

Improve reader speed by adjusting sharedStringTable usage #106

Improve reader speed by adjusting sharedStringTable usage

Improve reader speed by adjusting sharedStringTable usage #106

Workflow file for this run

name: Build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test-linux:
runs-on: ubuntu-latest
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
run: npm install
- name: make script executable
run: chmod u+x build.sh
- name: Build and test dotnet
working-directory: ./
run: ./build.sh runtests
build-and-test-windows:
runs-on: windows-latest
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
run: npm install
- name: Build and test dotnet
working-directory: ./
run: ./build.cmd runtests