From 1bd3ffce31aab91fa61abd32bc7fa56da09a4f4b Mon Sep 17 00:00:00 2001 From: Artem Turlenko <76534386+art2url@users.noreply.github.com> Date: Wed, 13 Nov 2024 11:02:14 +0100 Subject: [PATCH] =?UTF-8?q?Node=20=E2=80=93=20nasa-project,=20build=20pipe?= =?UTF-8?q?line=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .DS_Store | Bin 6148 -> 6148 bytes .github/workflows/node.yml | 17 +++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 .github/workflows/node.yml diff --git a/.DS_Store b/.DS_Store index 41203b753c29ccdc4c6d12e3762dfa678218269f..62861a1198d762ddc42b6b8bc8a35a4d470abb22 100644 GIT binary patch delta 234 zcmZoMXfc@J&&a(oU^g=(_hcRxZBKRvJ%)6KOokGM42DvMB+s1uQt~N9@HP%ruGBm5zQK+^wGSE>lF*d8M<>U}m z*0&Cd&(6us%kKsn1q6(Y5SoD(O2eogAOp>+vf!e;ocz3WpbSVC8$&Wf4$#@D40#MC Ra7S~ delta 32 ocmZoMXfc@J&&aVcU^g=($7CKB?afiFYne7SC^K$m=lIJH0HOv7%K!iX diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml new file mode 100644 index 0000000..c1cae42 --- /dev/null +++ b/.github/workflows/node.yml @@ -0,0 +1,17 @@ +name: NASA Project CI +on: + push: + branches: [master] + pull_request: + branches: [master] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Use Node.js version 20 + uses: actions/setup-node@v3 + with: + node-version: '20' + - run: npm install + - run: npm run build --prefix client