Skip to content

Commit e6f2e0e

Browse files
increase timeout-minutes for test
1 parent 0f73624 commit e6f2e0e

6 files changed

Lines changed: 6 additions & 319 deletions

File tree

.github/workflows/playwright.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,15 @@ on:
1010
jobs:
1111
test:
1212
runs-on: ubuntu-latest
13-
timeout-minutes: 15
13+
timeout-minutes: 45
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v4
1717

1818
- name: Set up Node
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version-file: .nvmrc
22-
check-latest: true
21+
node-version: '20.x'
2322

2423
- name: Install deps
2524
run: |

.github/workflows/storybook-deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ jobs:
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v4
20+
2021
- name: Setup node
21-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2223
with:
2324
node-version: '20.x'
25+
2426
- name: Install dependencies
2527
run: npm install
28+
2629
- uses: bitovi/github-actions-storybook-to-github-pages@v1.0.3
2730
with:
2831
path: storybook-static

babel.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
module.exports = function(api) {
42
api.cache(true)
53
api.assertVersion("^7.19.3")

package.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,6 @@
1414
":pretest": "npm-run-all test lint",
1515
"test": "jest -c ./config/jest.config.js",
1616
"test:watch": "jest -c ./config/jest.config.js --watchAll",
17-
"build": "npm-run-all prebuild build:legacy build:modern build:node build:stable build:copy-files",
18-
"build:legacy": "node ./scripts/build legacy",
19-
"build:modern": "node ./scripts/build modern",
20-
"build:node": "node ./scripts/build node",
21-
"build:stable": "node ./scripts/build stable",
22-
"build:stable:watch": "node ./scripts/build stable --watch",
23-
"build:copy-files": "node ./scripts/copy-files.js",
2417
"lint": "npm-run-all :lint:eslint :lint:prettier",
2518
":lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx -c .eslintrc.js --max-warnings 0 ./src",
2619
":lint:eslint:gh": "eslint --ext .js,.jsx,.ts,.tsx -c .eslintrc.js --max-warnings 0 --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif ./src",

scripts/build.js

Lines changed: 0 additions & 131 deletions
This file was deleted.

scripts/copy-files.js

Lines changed: 0 additions & 175 deletions
This file was deleted.

0 commit comments

Comments
 (0)