Correct versions for react-d3-speedometer in readme #4
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: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Restore tools | |
run: dotnet tool restore | |
- name: Build | |
run: dotnet build --configuration Release | |
- name: Restore demo tools | |
run: dotnet tool restore | |
working-directory: ./demo | |
- name: Build Demo | |
run: npm run build | |
working-directory: ./demo |