From 7c9060a78e1d0b0378484041e3f4b58e2c7d15d2 Mon Sep 17 00:00:00 2001 From: Paula Mendez Date: Mon, 29 Aug 2022 21:43:45 -0700 Subject: [PATCH] test new ci file --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..9df5b09 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +name: ci + +on: + [pull_request, push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set-up node + uses: actions/setup-node@v1 + with: + node-version: "10.x" + - run: npm install + - run: npm run build + - run: npm test + - name: Upload Artifact + uses: actions/upload-pages-artifact@v1 \ No newline at end of file