Skip to content

Bump tough-cookie from 4.0.0 to 4.1.4 in /tests/fable #45

Bump tough-cookie from 4.0.0 to 4.1.4 in /tests/fable

Bump tough-cookie from 4.0.0 to 4.1.4 in /tests/fable #45

Workflow file for this run

name: Build and Test Pull Request
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.202'
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 14.17.*
- name: Install tools
run: dotnet tool restore
- name: Build and Test
run: dotnet test -c Release
- name: Test Fable
run: cd tests/fable && npm i && npm test && cd ../..