Skip to content

Bump semver from 6.1.0 to 6.3.1 in /tools/stackmap #138

Bump semver from 6.1.0 to 6.3.1 in /tools/stackmap

Bump semver from 6.1.0 to 6.3.1 in /tools/stackmap #138

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Main
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
dotnet-version: [6.0.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install dependencies
run: yarn --frozen-lockfile --network-timeout 600000 install
- name: Display dotnet version
run: dotnet --version
- name: Build
run: yarn build
- name: Test
run: yarn test