Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit 325432d

Browse files
author
Vinit Kumar
authored
fix: frontend ci tests (#617)
* fix: frontend ci tests * fix: upgrade to a version of graceful-fs that's more recent * fix: try and see if this works * fix: update npm to see if that fixes the issue * fix: check if the problem is only limited to 16.x by adding 17.x in the mix too * fix: 17.x * feat: one more try * feat: add 16.x as the issue was with faulty package-lock.json which is replaced now * feat: add graceful-fs in resolutions itself and package-lock.json
1 parent 31cb918 commit 325432d

File tree

3 files changed

+1600
-1879
lines changed

3 files changed

+1600
-1879
lines changed

.github/workflows/frontend.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,17 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
node-version: [16.x]
10+
node-version: [16.x, 17.x]
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: Use Node.js ${{ matrix.node-version }}
14-
uses: actions/setup-node@v2
14+
uses: actions/setup-node@v3
1515
with:
1616
node-version: ${{ matrix.node-version }}
1717
- name: Install gulp
1818
run: npm install -g [email protected]
19+
- name: Install npm
20+
run: npm install --location=global npm@latest
1921
- name: Install dependencies
2022
run: npm install
2123
# - name: Run gulp

0 commit comments

Comments
 (0)