Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit 9b457a2

Browse files
authored
fix: update deps and workflow with build step (#271)
1 parent 7e4188e commit 9b457a2

File tree

4 files changed

+512
-393
lines changed

4 files changed

+512
-393
lines changed

.github/workflows/coverage.yml .github/workflows/test.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
name: tests and coverage
1+
name: Build and Test
22
on: [push]
33
jobs:
44
test-coverage:
55
runs-on: ubuntu-latest
66
steps:
77
- name: checkout
8-
uses: actions/checkout@v2
8+
uses: actions/checkout@v3
99

1010
- name: install packages
11-
run: yarn
11+
run: yarn
12+
13+
- name: build
14+
run: yarn build
1215

1316
- name: jest test
1417
run: yarn test
15-

example/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
"@types/react-dom": "link:../node_modules/@types/react-dom",
2323
"react": "17.0.2",
2424
"react-dom": "17.0.2",
25-
"react-query": "3.34.16",
25+
"react-query": "3.39.3",
2626
"react-scripts": "5.0.0",
27-
"typescript": "4.9.5"
27+
"typescript": "5.0.4"
2828
},
2929
"devDependencies": {
3030
"@babel/plugin-syntax-object-rest-spread": "7.8.3"

package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,27 @@
1919
"Alexandre Chau"
2020
],
2121
"dependencies": {
22-
"@graasp/sdk": "0.10.0",
23-
"@graasp/translations": "1.8.0",
22+
"@graasp/sdk": "0.10.1",
23+
"@graasp/translations": "1.11.0",
2424
"axios": "0.27.2",
2525
"crypto-js": "4.1.1",
2626
"http-status-codes": "2.2.0",
27-
"immutable": "4.2.4",
28-
"qs": "6.11.0",
27+
"immutable": "4.3.0",
28+
"qs": "6.11.1",
2929
"react-query": "3.39.3",
3030
"uuid": "9.0.0"
3131
},
3232
"devDependencies": {
3333
"@babel/core": "7.17.10",
3434
"@babel/preset-env": "7.17.10",
3535
"@babel/preset-typescript": "7.16.7",
36-
"@commitlint/cli": "16.2.4",
37-
"@commitlint/config-conventional": "16.2.4",
36+
"@commitlint/cli": "17.6.1",
37+
"@commitlint/config-conventional": "17.6.1",
3838
"@testing-library/jest-dom": "5.16.4",
3939
"@testing-library/react": "12.1.4",
4040
"@testing-library/react-hooks": "7.0.2",
4141
"@testing-library/user-event": "14.1.1",
42-
"@trivago/prettier-plugin-sort-imports": "3.2.0",
42+
"@trivago/prettier-plugin-sort-imports": "4.1.1",
4343
"@types/crypto-js": "4.1.1",
4444
"@types/jest": "28.1.0",
4545
"@types/js-cookie": "3.0.2",
@@ -49,14 +49,14 @@
4949
"@types/react": "17.0.44",
5050
"@types/react-dom": "17.0.16",
5151
"@types/uuid": "9.0.0",
52-
"@typescript-eslint/eslint-plugin": "5.54.1",
53-
"@typescript-eslint/parser": "5.54.1",
52+
"@typescript-eslint/eslint-plugin": "5.59.0",
53+
"@typescript-eslint/parser": "5.59.0",
5454
"babel-jest": "27.5.1",
5555
"env-cmd": "10.1.0",
56-
"eslint": "8.33.0",
56+
"eslint": "8.38.0",
5757
"eslint-config-airbnb": "19.0.4",
58-
"eslint-config-prettier": "8.6.0",
59-
"eslint-import-resolver-typescript": "3.5.3",
58+
"eslint-config-prettier": "8.8.0",
59+
"eslint-import-resolver-typescript": "3.5.5",
6060
"eslint-plugin-import": "2.27.5",
6161
"eslint-plugin-jsx-a11y": "6.7.1",
6262
"eslint-plugin-react": "7.32.2",
@@ -69,12 +69,12 @@
6969
"microbundle-crl": "0.13.11",
7070
"mock-socket": "9.1.5",
7171
"nock": "13.3.0",
72-
"prettier": "2.8.4",
72+
"prettier": "2.8.7",
7373
"react-test-renderer": "17.0.2",
7474
"standard-version": "9.5.0",
7575
"ts-jest": "28.0.4",
7676
"ts-node": "10.8.0",
77-
"typescript": "4.9.5",
77+
"typescript": "5.0.4",
7878
"wait-on": "7.0.1"
7979
},
8080
"peerDependencies": {
@@ -130,5 +130,5 @@
130130
"postcss": "7.0.36",
131131
"nth-check": "2.0.1"
132132
},
133-
"packageManager": "yarn@3.4.1"
133+
"packageManager": "yarn@3.5.0"
134134
}

0 commit comments

Comments
 (0)