From f79027c5313e92a69b368622ac3f3646ff0b335d Mon Sep 17 00:00:00 2001 From: talmobi Date: Thu, 26 Sep 2024 21:23:58 +0300 Subject: [PATCH] chore: fixes so gha works without a lockfile --- .github/workflows/ubuntu-node.js.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu-node.js.yml b/.github/workflows/ubuntu-node.js.yml index abac7d5..a096188 100644 --- a/.github/workflows/ubuntu-node.js.yml +++ b/.github/workflows/ubuntu-node.js.yml @@ -22,10 +22,11 @@ jobs: steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} cache: 'npm' - - run: npm ci + - shell: script -e -c {0} + - run: npm install - run: npm run build --if-present - run: npm test