From 161ad1386f5359f15a9a83824e69a76731c21228 Mon Sep 17 00:00:00 2001 From: artem Date: Thu, 17 Oct 2024 21:50:59 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20gitea-ci.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gitea-ci.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 gitea-ci.yaml diff --git a/gitea-ci.yaml b/gitea-ci.yaml new file mode 100644 index 0000000..56fbdce --- /dev/null +++ b/gitea-ci.yaml @@ -0,0 +1,21 @@ + + +name: Build And Test +run-name: $ is runs ci pipeline +on: [ push ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: https://github.com/actions/checkout@v4 + - name: Use Node.js + uses: https://github.com/actions/setup-node@v3 + with: + node-version: '18.17' + - run: npm ci + - run: npm run lint + - run: npm run test + - run: npm run build:prod + env: + NODE_OPTIONS: --max_old_space_size=4096 \ No newline at end of file