Skip to content

Commit

Permalink
run unit tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
marcopiraccini committed Nov 29, 2023
1 parent f6b6f46 commit a08d920
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: run tests

on:
workflow_dispatch:
workflow_call:
pull_request:
paths-ignore:
- '**.md'

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run test
- run: npm run build
- run: npm run test:ui
- run: npm run test:server

0 comments on commit a08d920

Please sign in to comment.