Remove duplicates from enums and use CaseRules.None #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Fable Tests - JavaScript | |
run: | | |
pnpm install | |
dotnet tool restore | |
dotnet fable tests --run npx ava tests |