Skip to content

Bump micromatch from 4.0.5 to 4.0.8 (#42) #31

Bump micromatch from 4.0.5 to 4.0.8 (#42)

Bump micromatch from 4.0.5 to 4.0.8 (#42) #31

Workflow file for this run

name: build
on:
push:
branches: [ dev ]
paths-ignore:
- '**/*.gitattributes'
- '**/*.gitignore'
- '**/*.md'
pull_request:
branches: [ dev ]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install packages
run: |
npm ci
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Test
run: |
npm test