From 12e4695002d67b5031dfb32ce09bf1d0f35ffd4c Mon Sep 17 00:00:00 2001 From: Walter Corrales Date: Mon, 21 Mar 2022 21:37:02 -0600 Subject: [PATCH] =?UTF-8?q?[=E2=9A=99=EF=B8=8F]=20piepline=20to=20do=20bui?= =?UTF-8?q?ld=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 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 00000000..152c684e --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: test +on: + push: + branches: [master] + pull_request: + branches: + - "*" +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Git checkout + uses: actions/checkout@master + - name: Install dependencies + run: npm install + - name: Run build + run: npm run build