From ac1425cbcb98a650ff7fd88ae8fbe39108be05a0 Mon Sep 17 00:00:00 2001 From: MoneroOcean Date: Mon, 7 Oct 2024 07:19:59 +0300 Subject: [PATCH] Added CI tests --- .github/workflows/test.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..7c4d1c8 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +on: push + +name: Test + +jobs: + build_lin: + name: Ubuntu test + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@master + - name: Test + run: | + npm install + node_modules/cryptoforknote-util/tests/run.sh \ No newline at end of file