From 4e848b03c929ee41ce6caaf387565621dc3363e9 Mon Sep 17 00:00:00 2001 From: Nikita Agafonov Date: Tue, 29 Aug 2023 14:43:18 +0100 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..84b944e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,23 @@ +name: Build Branch +on: workflow_dispatch + +jobs: + build_all: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + with: + path: app + - uses: actions/setup-node@master + with: + node-version: 19 + - name: Install Node dependencies + run: | + cd app + npm install + + - name: Build + run: | + cd app + npm run build:js + ls out