Skip to content

Newell - Resolve issues in GitHub Actions pipeline #1343

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(ci): resolve issues in GitHub Actions pipeline
  • Loading branch information
Ankuriboh authored Apr 18, 2025
commit c68912c7693e4340e638922fd7662e3a6e49db0c
17 changes: 5 additions & 12 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -11,20 +11,13 @@ on:

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
- uses: actions/checkout@v4
- name: Use Node.js 14.x
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: 14.x
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm run test
Loading
Oops, something went wrong.