Skip to content

Bump postcss from 8.4.16 to 8.4.31 in /website #206

Bump postcss from 8.4.16 to 8.4.31 in /website

Bump postcss from 8.4.16 to 8.4.31 in /website #206

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
name: env-specific
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
dotnet-version: ['6.0.x']
steps:
- uses: actions/checkout@v2
- name: Setup .NET ${{ matrix.dotnet-version }}
uses: actions/[email protected]
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal