Skip to content
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

security: update tough-cookie dependency to 4.1.3 #32

Merged
merged 5 commits into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 0 additions & 11 deletions .github/workflows/npm.yaml

This file was deleted.

13 changes: 13 additions & 0 deletions .github/workflows/yarn.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Check with yarn
on: [push, pull_request]
jobs:
build:
name: Install and test with yarn
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To get the tests to pass, you need to use Node.js 16.

Copy link

@MikeMcC399 MikeMcC399 Aug 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
node-version: "18"
node-version: 16.16.0

This matches Cypress' .node-version.

- run: yarn install
- run: yarn test