From 44399b360ea5db0f3b0c8fb5f839804bacc36608 Mon Sep 17 00:00:00 2001 From: sandypockets Date: Wed, 13 Dec 2023 23:33:40 -0500 Subject: [PATCH] Chore: Add CI tests --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2b70a4d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: Run Tests + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [16.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - run: npm cache clean --force + - run: npm ci + - run: npm run test \ No newline at end of file