diff --git a/.github/workflows/test-ui.yaml b/.github/workflows/test-ui.yaml new file mode 100644 index 000000000..d68614111 --- /dev/null +++ b/.github/workflows/test-ui.yaml @@ -0,0 +1,17 @@ +name: Tests CI + +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Test using Node.js + uses: actions/setup-node@v1 + with: + node-version: '12' + working-directory: ./tests-ui + run: | + npm install + npm test \ No newline at end of file