Skip to content

Bump minimatch from 3.0.4 to 3.1.2 in /src/React.Core/Resources/babel-legacy #288

Bump minimatch from 3.0.4 to 3.1.2 in /src/React.Core/Resources/babel-legacy

Bump minimatch from 3.0.4 to 3.1.2 in /src/React.Core/Resources/babel-legacy #288

name: .NET Core Desktop
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: windows-latest # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@2008f912f56e61277eefaac6d1888b750582aa16
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- name: Build
run: msbuild build.proj /p:PackageOutputDir="${{ env.GITHUB_WORKSPACE }}/nuget-output" /p:Configuration=${{ matrix.configuration }}
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
Configuration: ${{ matrix.configuration }}
- name: Upload build artifacts
uses: actions/upload-artifact@v1
with:
name: Nuget Package
path: "${{ env.GITHUB_WORKSPACE }}/nuget-output"