Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4f3aa00

Browse files
committedJun 27, 2022
fix ci
1 parent f34bb48 commit 4f3aa00

File tree

3 files changed

+7
-33
lines changed

3 files changed

+7
-33
lines changed
 

‎.github/workflows/build.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ jobs:
88
steps:
99
- name: Checkout
1010
uses: actions/checkout@v3
11+
- name: Setup node.js
12+
uses: actions/setup-node@v3
13+
with:
14+
node-version: 14
1115

1216
- name: Install and build
1317
run: |
@@ -25,7 +29,7 @@ jobs:
2529
runs-on: ubuntu-latest
2630
steps:
2731
- run: |
28-
curl -L "https://github.com/paritytech/substrate-contracts-node/releases/download/v0.16.1/substrate-contracts-node-linux.tar.gz" -O
32+
curl -L "https://github.com/paritytech/substrate-contracts-node/releases/download/v0.16.0/substrate-contracts-node-linux.tar.gz" -O
2933
ls -lash
3034
- name: Save node artifact
3135
uses: actions/upload-artifact@v3
@@ -66,6 +70,7 @@ jobs:
6670
browser: chrome
6771
record: true
6872
parallel: true
73+
config-file: cypress.config.ts
6974
group: 'UI - Chrome'
7075
env:
7176
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }}
@@ -104,6 +109,7 @@ jobs:
104109
browser: firefox
105110
record: true
106111
parallel: true
112+
config-file: cypress.config.ts
107113
group: 'UI - Firefox'
108114
env:
109115
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }}

‎package.json

-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@
5959
"@types/node": "^17.0.33",
6060
"@types/react-dom": "^18.0.4",
6161
"@types/react-dropzone": "^5.1.0",
62-
"@types/react-router": "^5.1.18",
63-
"@types/react-router-dom": "^5.3.3",
6462
"@types/react-select": "^5.0.1",
6563
"@typescript-eslint/eslint-plugin": "^5.23.0",
6664
"@typescript-eslint/parser": "^5.23.0",

‎yarn.lock

-30
Original file line numberDiff line numberDiff line change
@@ -1422,13 +1422,6 @@ __metadata:
14221422
languageName: node
14231423
linkType: hard
14241424

1425-
"@types/history@npm:^4.7.11":
1426-
version: 4.7.11
1427-
resolution: "@types/history@npm:4.7.11"
1428-
checksum: c92e2ba407dcab0581a9afdf98f533aa41b61a71133420a6d92b1ca9839f741ab1f9395b17454ba5b88cb86020b70b22d74a1950ccfbdfd9beeaa5459fdc3464
1429-
languageName: node
1430-
linkType: hard
1431-
14321425
"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.9":
14331426
version: 7.0.11
14341427
resolution: "@types/json-schema@npm:7.0.11"
@@ -1522,27 +1515,6 @@ __metadata:
15221515
languageName: node
15231516
linkType: hard
15241517

1525-
"@types/react-router-dom@npm:^5.3.3":
1526-
version: 5.3.3
1527-
resolution: "@types/react-router-dom@npm:5.3.3"
1528-
dependencies:
1529-
"@types/history": ^4.7.11
1530-
"@types/react": "*"
1531-
"@types/react-router": "*"
1532-
checksum: 28c4ea48909803c414bf5a08502acbb8ba414669b4b43bb51297c05fe5addc4df0b8fd00e0a9d1e3535ec4073ef38aaafac2c4a2b95b787167d113bc059beff3
1533-
languageName: node
1534-
linkType: hard
1535-
1536-
"@types/react-router@npm:*, @types/react-router@npm:^5.1.18":
1537-
version: 5.1.18
1538-
resolution: "@types/react-router@npm:5.1.18"
1539-
dependencies:
1540-
"@types/history": ^4.7.11
1541-
"@types/react": "*"
1542-
checksum: f08b37ee822f9f9ff904ffd0778fe2bb7c717ed3ee311610382ee024d02a35169bd3301ecde863cac21aae8fdee919501e8ea22bad0260c02c10cfbdba5c71be
1543-
languageName: node
1544-
linkType: hard
1545-
15461518
"@types/react-select@npm:^5.0.1":
15471519
version: 5.0.1
15481520
resolution: "@types/react-select@npm:5.0.1"
@@ -2597,8 +2569,6 @@ __metadata:
25972569
"@types/node": ^17.0.33
25982570
"@types/react-dom": ^18.0.4
25992571
"@types/react-dropzone": ^5.1.0
2600-
"@types/react-router": ^5.1.18
2601-
"@types/react-router-dom": ^5.3.3
26022572
"@types/react-select": ^5.0.1
26032573
"@typescript-eslint/eslint-plugin": ^5.23.0
26042574
"@typescript-eslint/parser": ^5.23.0

0 commit comments

Comments
 (0)
Please sign in to comment.