Skip to content

[Repo Assist] Fix deprecated F# refcell operators (! and :=) #195

[Repo Assist] Fix deprecated F# refcell operators (! and :=)

[Repo Assist] Fix deprecated F# refcell operators (! and :=) #195

Workflow file for this run

name: Build and Test Pull Request
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4.3.1
with:
dotnet-version: '8.0.x'
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install tools
run: dotnet tool restore
- name: Build and Test
run: dotnet test -c Release
- name: Test Fable
run: (cd tests/fable && npm i && npm test)