build(deps): bump coverlet.collector from 6.0.0 to 6.0.1 in /dotnet (… #32
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 and test dotnet | |
on: | |
push: | |
branches: ["production"] | |
paths: ["dotnet/**"] # only run if there were changes in the dotnet folder | |
workflow_dispatch: | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
- name: Install .NET SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "6.0.x" # latest LTS build | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Node Build | |
env: | |
FIGMA_ACCESS_TOKEN: ${{ secrets.FIGMA_ACCESS_TOKEN }} | |
run: npm run build | |
- name: .NET Build | |
run: npm run build:nuget | |
- name: .NET Test | |
run: npm run test:nuget |