Skip to content

:loud_noise: let's see what the full process output is on fail then eh #2

:loud_noise: let's see what the full process output is on fail then eh

:loud_noise: let's see what the full process output is on fail then eh #2

Workflow file for this run

name: Build and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
7.x
- uses: actions/setup-node@v2-beta
with:
node-version: '18'
- name: Build and test
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
run: |
npm ci
npm test