From 61649f2d64561991c4a00c5ece0e2a298519a0c5 Mon Sep 17 00:00:00 2001 From: K0IN <19688162+K0IN@users.noreply.github.com> Date: Mon, 28 Aug 2023 19:03:05 +0200 Subject: [PATCH] Create build-frontend.yml (#94) --- .github/workflows/build-frontend.yml | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/build-frontend.yml diff --git a/.github/workflows/build-frontend.yml b/.github/workflows/build-frontend.yml new file mode 100644 index 0000000..b4c5b5e --- /dev/null +++ b/.github/workflows/build-frontend.yml @@ -0,0 +1,32 @@ +name: Build frontend + +on: + push: + branches: + - "*" + schedule: + - cron: "39 12 * * 6" + +jobs: + run-linter: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - uses: actions/setup-node@v3 + with: + node-version: 'latest' + + - name: Install dependencies + run: npm install + working-directory: ./app/frontend + + - name: Build + run: npm run build + working-directory: ./app/frontend + + # - name: Build + # run: npm run lint + # working-directory: ./app/frontend +