This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
Update README.md #213
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 main | |
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: [main] | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install local tools | |
run: dotnet tool restore | |
- name: Restore Paket | |
run: dotnet paket restore | |
- name: Build | |
run: dotnet fsi tools.fsx | |
- name: Prepare Esbuild | |
run: dotnet fsi esbuild-ci.fsx | |
- name: Test | |
run: dotnet fsi tools.fsx -- test |