Skip to content

Fix CI and update npm packages #35

Fix CI and update npm packages

Fix CI and update npm packages #35

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: '22.x'
- name: Install packages
run: |
npm ci
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Test
run: |
npm test