From 1cba1a81fb7facee7ac5c5981e90a546c63490e3 Mon Sep 17 00:00:00 2001 From: luka onik Date: Mon, 3 Mar 2025 17:42:38 +0400 Subject: [PATCH] ci: fix deployment --- .github/workflows/deployment.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 84b006f..1461f5b 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -8,5 +8,20 @@ jobs: name: Deployment runs-on: ubuntu-latest steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '20' + cache: 'npm' + + - name: Install dependencies + run: npm install + + - name: Build library + run: npm run build + - name: Trigger Deployment run: npm run deploy