Skip to content

Commit c7c541a

Browse files
Merge pull request #1343 from OneCommunityGlobal/newell-pr-github-actions-fix
Newell - Resolve issues in GitHub Actions pipeline
2 parents 4747262 + c68912c commit c7c541a

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

.github/workflows/node.js.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,13 @@ on:
1111

1212
jobs:
1313
build:
14-
1514
runs-on: ubuntu-latest
16-
17-
strategy:
18-
matrix:
19-
node-version: [12.x, 14.x, 16.x]
20-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21-
2215
steps:
23-
- uses: actions/checkout@v2
24-
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v2
16+
- uses: actions/checkout@v4
17+
- name: Use Node.js 14.x
18+
uses: actions/setup-node@v4
2619
with:
27-
node-version: ${{ matrix.node-version }}
20+
node-version: 14.x
2821
cache: 'npm'
2922
- run: npm ci
30-
- run: npm run build --if-present
23+
- run: npm run test

0 commit comments

Comments
 (0)