add ci action

This commit is contained in:
pythongosssss 2023-10-16 11:43:19 +01:00
parent 36534e043a
commit 1a24b4448f

17
.github/workflows/test-ui.yaml vendored Normal file
View File

@ -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