From 1361660fa01a2361d320d81c9c7f3bc1631ea837 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A1rbara=20Boechat?= Date: Mon, 4 Jan 2021 15:07:26 -0300 Subject: [PATCH] Setup workflow to gitactions --- actions.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 actions.yml diff --git a/actions.yml b/actions.yml new file mode 100644 index 00000000..03a0e7c8 --- /dev/null +++ b/actions.yml @@ -0,0 +1,20 @@ +name: CI + +on: + # Triggers the workflow on push or pull request events + push: + branches: [ master ] + pull_request: + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + - name: Install dependencies and build latest.zip + run: npm install && npm run build + \ No newline at end of file