Skip to content

feat: update views dkhp #28

feat: update views dkhp

feat: update views dkhp #28

Workflow file for this run

name: BuildAndTest
on:
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
runs-on: ${{ matrix.os }}
steps:
- name: Github checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build app
run: npm run make
- name: Test app
run: npm run test