From 28c8b663818c38e34d3caf26ae95a928d4d479b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jefferson=20Gir=C3=A3o?= Date: Mon, 3 Feb 2020 11:21:16 +0100 Subject: [PATCH] chore: add initial workflow for ci * only hello world for now. --- .github/workflows/frontend.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/frontend.yml diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml new file mode 100644 index 0000000000..e54d08bc6a --- /dev/null +++ b/.github/workflows/frontend.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Run a one-line script + run: echo Hello, world! + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project.