From 8031d95a97e711b7ecaadc56c85414b86f28f5b0 Mon Sep 17 00:00:00 2001 From: Sitraka Ratsimba Date: Mon, 22 Apr 2024 18:06:53 +0300 Subject: [PATCH] configure ci --- .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..d04cfab --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +name: Build And Test + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + node-version: ['14.21.3', '21.7.3'] + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: '20.x' + - run: npm install + - run: npm test \ No newline at end of file