Skip to content

Commit

Permalink
Bump Cypress version to 13.8.1, autogen package-lock.json
Browse files Browse the repository at this point in the history
The Cypress version used comes from a package.json file.

We don't want to commit package-lock.json to the repo (while there
may be good reasons for Node.js projects to do so, this is not a
Node.js project.)  So run `npm install`
  • Loading branch information
hostilefork committed Apr 26, 2024
1 parent f011906 commit 70d0668
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1,976 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/web-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,20 @@ jobs:
]
# NPM insists on there being a package-lock.json file, if not you get:
#
# "Error: Action failed. Missing package manager lockfile."
#
# While there may be good reasons for Node.js codebases to commit these
# lock files to their repositories, this is not a Node.js project. Make
# the lock file as part of the test process.
#
- name: Create package-lock.json file in Cypress test directory
run: |
cd tests/cypress
npm install
# The Marionette test process has been replaced with Cypress, which
# can run multiple browsers. See results here:
#
Expand Down

0 comments on commit 70d0668

Please sign in to comment.