Skip to content

Commit

Permalink
fix: frontend ci tests (#617)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
Vinit Kumar authored Jun 15, 2022
1 parent 31cb918 commit 325432d
Show file tree
Hide file tree
Showing 3 changed files with 1,600 additions and 1,879 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [16.x, 17.x]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install gulp
run: npm install -g [email protected]
- name: Install npm
run: npm install --location=global npm@latest
- name: Install dependencies
run: npm install
# - name: Run gulp
Expand Down
Loading

0 comments on commit 325432d

Please sign in to comment.