Add automated UI tests

This commit is contained in:
Viktor Strate Kløvedal
2020-09-27 23:04:05 +02:00
committed by GitHub
parent 335ee3ebe2
commit 7665876b3a

View File

@@ -38,3 +38,32 @@ jobs:
- name: Test
run: go test -v ./...
test-ui:
name: Test UI
runs-on: ubuntu-latest
defaults:
run:
working-directory: ui
strategy:
matrix:
node-version: [10.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run build --if-present
- name: Test
run: npm test