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

Pd 4288/stack upgrade #30

Merged
merged 17 commits into from
Jan 20, 2025
Merged
24 changes: 0 additions & 24 deletions .eslintignore

This file was deleted.

22 changes: 0 additions & 22 deletions .eslintrc.js

This file was deleted.

7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: run tests
strategy:
matrix:
node: ["20.x"]
node: ["22.x"]
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}
Expand All @@ -27,5 +27,8 @@ jobs:
- name: Install dependencies
run: npm install

- name: Install playwright webkit
run: npx playwright install-deps webkit

- name: Run tests
run: npm run test
run: npx playwright install && npm run test
8 changes: 6 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: run tests
strategy:
matrix:
node: ["20.x"]
node: ["22.x"]
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}
Expand All @@ -26,5 +26,9 @@ jobs:
- name: Install dependencies
run: npm install

- name: Install playwright webkit
run: npx playwright install-deps webkit

- name: Run tests
run: npm run test
run: npx playwright install && npm run test

3 changes: 3 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import torusLabsEslintConfigNode from "@toruslabs/eslint-config-node";

export default [...torusLabsEslintConfigNode];
Loading
Loading