Skip to content

Bump some deps #425

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

Merged
merged 26 commits into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1845c46
Bump some deps
thomashohn Mar 19, 2025
dcccdda
Update ava
thomashohn Mar 19, 2025
5fda3f0
Merge pull request #426 from codeceptjs/ava
thomashohn Mar 19, 2025
ad1f3f0
Update axios and playwright
thomashohn Mar 19, 2025
0dc8328
Merge pull request #427 from codeceptjs/playwright-axios
thomashohn Mar 19, 2025
85b4f49
Update chokidar
thomashohn Mar 19, 2025
c62e4a0
Merge pull request #428 from codeceptjs/chokidar
thomashohn Mar 19, 2025
d18c9b9
Update webdriver-io
thomashohn Mar 19, 2025
78415dc
Merge pull request #429 from codeceptjs/webdriver-io
thomashohn Mar 19, 2025
f0e3fd7
Update electron
thomashohn Mar 19, 2025
3f4e2e0
Merge pull request #430 from codeceptjs/electron
thomashohn Mar 19, 2025
dcf2d64
nanoid 4
thomashohn Mar 19, 2025
72361b6
nanoid 5
thomashohn Mar 19, 2025
5b7b4ef
Merge pull request #431 from codeceptjs/nanoid
thomashohn Mar 19, 2025
313d65d
husky 8
thomashohn Mar 19, 2025
9d5ca96
husky 9
thomashohn Mar 19, 2025
5843cf3
Stay on husky 8
thomashohn Mar 19, 2025
5b1139b
Merge pull request #432 from codeceptjs/husky
thomashohn Mar 19, 2025
9245309
Update sass
thomashohn Mar 19, 2025
7ce4fb8
Merge pull request #433 from codeceptjs/sass
thomashohn Mar 19, 2025
c24efb7
Bump node
thomashohn Mar 20, 2025
538028f
Merge pull request #436 from codeceptjs/bump-node
thomashohn Mar 20, 2025
78590d1
Bump finder
thomashohn Mar 20, 2025
115e645
Merge pull request #437 from codeceptjs/finder
thomashohn Mar 20, 2025
178372d
Bump socketio
thomashohn Mar 20, 2025
87436f6
Merge pull request #438 from codeceptjs/socket-io
thomashohn Mar 20, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/e2-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
registry-url: https://registry.npmjs.org/
- run: git config --global user.name "GitHub CD bot"
- run: git config --global user.email "[email protected]"
- name: Install deps
run: npm i -g wait-for-localhost-cli && npm i -f
run: export NODE_OPTIONS=--openssl-legacy-provider && npm i -g wait-for-localhost-cli && npm i -f
- name: Start app and run tests
run: npm run serve & wait-for-localhost 8080; cd test/e2e; npm i && npx playwright install chromium && npm run test
run: export NODE_OPTIONS=--openssl-legacy-provider && npm run serve & wait-for-localhost 8080; cd test/e2e; npm i && npx playwright install chromium && npm run test
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading