From 212c2c80105ba5c59996169441de1e70f5dc5202 Mon Sep 17 00:00:00 2001 From: arnau <17317030+arnaucube@users.noreply.github.com> Date: Sat, 9 May 2020 17:31:22 +0200 Subject: [PATCH] Create tests.yml --- .github/workflows/tests.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..90d4e72 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,21 @@ +name: Test +on: + push: + branches: [ '*' ] + pull_request: + branches: [ '*' ] +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [ 10.x ] + + steps: + - uses: actions/checkout@v2 + - name: Use Nodejs + uses: actions/setup-node@v1 + - name: Install node_modules + run: npm install + - name: Test circom circuits + run: npm run test