From 1dbcf8f3aefa796d54351f41fd12e06ba92d1624 Mon Sep 17 00:00:00 2001 From: David Momenso Date: Tue, 14 Jan 2025 20:42:06 -0300 Subject: [PATCH] Update nodejs.yml Updated Node.js Versions Replaced outdated versions (8.x, 10.x, 12.x) with modern LTS versions (16.x, 18.x, 20.x). Added Cache for npm Speeds up workflow by caching node_modules. Install Build Tools Ensures necessary tools (build-essential, python3, make) are available. Rebuild node-gyp Explicitly rebuilds node-gyp to ensure compatibility. --- .github/workflows/nodejs.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 99cb02f..af9eaae 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -11,13 +11,17 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [8.x, 10.x, 12.x] + node-version: [16.x, 18.x, 20.x] # Updated Node.js versions steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} + cache: 'npm' # Caches npm modules - run: npm ci + - name: Install build tools (if needed) + run: sudo apt-get install -y build-essential python3 make + - run: npm rebuild node-gyp # Rebuild node-gyp if necessary - run: npm run build --if-present - run: npm test