Skip to content

Commit

Permalink
shopfloor_ui_tests: run unit tests in github
Browse files Browse the repository at this point in the history
  • Loading branch information
JuMiSanAr committed May 20, 2022
1 parent f38a85c commit 5a2c8b5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ui-unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: shopfloor app unit tests

on: [push, pull_request]

defaults:
run:
working-directory: shopfloor_ui_tests

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test using Node.js
uses: actions/setup-node@v1
with:
node-version: '16'
- run: npm install
- run: npm run unit-tests

0 comments on commit 5a2c8b5

Please sign in to comment.