Skip to content

Bump karma from 6.4.3 to 6.4.4 #458

Bump karma from 6.4.3 to 6.4.4

Bump karma from 6.4.3 to 6.4.4 #458

Workflow file for this run

name: Build
on:
push:
branches:
- master
paths-ignore:
- '**.md'
- 'LICENSE.txt'
pull_request:
branches:
- master
paths-ignore:
- '**.md'
- 'LICENSE.txt'
jobs:
build-and-test:
name: Build & Test
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build
run: npm run build
runs-on: ubuntu-latest