Skip to content

Commit

Permalink
Merge branch 'master' into v6-wip
Browse files Browse the repository at this point in the history
  • Loading branch information
tiesont committed Nov 26, 2022
2 parents 686963a + ae1197d commit ca38d72
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run Karma Test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
npm install
npm test

0 comments on commit ca38d72

Please sign in to comment.