From 1a24b4448fe25b4705372cae0e2b6118dec43465 Mon Sep 17 00:00:00 2001 From: pythongosssss <125205205+pythongosssss@users.noreply.github.com> Date: Mon, 16 Oct 2023 11:43:19 +0100 Subject: [PATCH] add ci action --- .github/workflows/test-ui.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test-ui.yaml 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