From 4b26dc574f5e127e3dfd01754895e1a7eb32a011 Mon Sep 17 00:00:00 2001 From: Marcus Davies <55892693+marcus-j-davies@users.noreply.github.com> Date: Sun, 28 Apr 2024 12:51:17 +0100 Subject: [PATCH] Create test.yml --- .github/workflows/test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..9c84f5f --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +name: Publish BETA + +on: + push: + branches: + - dev + +jobs: + test: + name: test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 18 + - run: | + npm install + npm run build + npm run test \ No newline at end of file