From f0f59a45acb3c19e44136ff1fa0066303b9447e4 Mon Sep 17 00:00:00 2001 From: Obelous <47227283+0belous@users.noreply.github.com> Date: Tue, 24 Jun 2025 17:47:09 +0100 Subject: [PATCH] fix workflow --- .github/workflows/node.js.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 75fa1fc..c3ff839 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,8 +1,16 @@ -steps: -- uses: actions/checkout@v4 -- uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' -- run: npm install -- run: npm run +name: Node.js CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' + - run: npm install + - run: npm run