From 9bbd7f12b82791da099d34efc5592ff6e163851f Mon Sep 17 00:00:00 2001 From: Tomasz F Date: Wed, 7 Apr 2021 10:52:09 +0200 Subject: [PATCH] Create frontend.yml --- .github/workflows/frontend.yml | 14 ++++++++++++++ 1 file changed, 14 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 0000000..4c0f72a --- /dev/null +++ b/.github/workflows/frontend.yml @@ -0,0 +1,14 @@ + name: Frontend + on: [push] + jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Go to frontend + run: cd frontend + - name: Install npm + run: npm install + - name: Build app + run: npm run dev