Skip to content

Commit

Permalink
Fixing the build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ramagururadhakrishnan committed Jun 21, 2024
1 parent e35df84 commit 1f55171
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Node.js CI

on:
Expand All @@ -17,16 +16,31 @@ jobs:
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install google-search-results-nodejs@2.1.0
- run: npm ci
- run: npm run build --if-present
- run: npm test

- name: Install dependencies
run: |
# Use npm install if no lock file
if [ ! -f package-lock.json ]; then
npm install
else
npm ci
fi
- name: Install google-search-results-nodejs
run: npm install google-search-results-nodejs@2.1.0

- name: Build project
run: npm run build --if-present

- name: Run tests
run: npm test

0 comments on commit 1f55171

Please sign in to comment.