Skip to content

Commit 46efb99

Browse files
committed
feat: add test units actions in gh
1 parent ae9ee8a commit 46efb99

File tree

4 files changed

+54
-11
lines changed

4 files changed

+54
-11
lines changed

.github/workflows/unit-tests.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Run Tests
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
- "chore/**"
8+
- "feat/**"
9+
- "fix/**"
10+
- "docs/**"
11+
- "refactor/**"
12+
- "test/**"
13+
push:
14+
branches:
15+
- main
16+
- "chore/**"
17+
- "feat/**"
18+
- "fix/**"
19+
- "docs/**"
20+
- "refactor/**"
21+
- "test/**"
22+
jobs:
23+
test:
24+
runs-on: ubuntu-latest
25+
26+
steps:
27+
- name: Checkout repository
28+
uses: actions/checkout@v3
29+
30+
- name: Set up Node.js
31+
uses: actions/setup-node@v3
32+
with:
33+
node-version: "18"
34+
35+
- name: Install dependencies
36+
run: npm install
37+
38+
- name: Run Jest tests
39+
run: npm test

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"identity-obj-proxy": "^3.0.0",
3434
"jest": "^29.7.0",
3535
"jest-environment-jsdom": "^29.7.0",
36-
"jest-styled-components": "^7.2.0",
3736
"storybook": "^8.5.0",
3837
"ts-jest": "^29.2.5",
3938
"ts-node": "^10.9.2",
@@ -44,6 +43,7 @@
4443
"@emotion/react": "^11.14.0",
4544
"@emotion/styled": "^11.14.0",
4645
"@types/react": "^19.0.7",
47-
"react": "^19.0.0"
46+
"react": "^19.0.0",
47+
"react-dom": "^19.0.0"
4848
}
4949
}

tests/setup.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { configure } from "@testing-library/react";
22
import { beforeAll, afterAll } from "@jest/globals";
33
import "@testing-library/jest-dom";
4-
import "jest-styled-components";
54

65
configure({
76
testIdAttribute: "data-testid",

yarn.lock

+13-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# yarn lockfile v1
33

44

5-
"@adobe/css-tools@^4.0.1", "@adobe/css-tools@^4.4.0":
5+
"@adobe/css-tools@^4.4.0":
66
version "4.4.1"
77
resolved "https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.4.1.tgz#2447a230bfe072c1659e6815129c03cf170710e3"
88
integrity sha512-12WGKBQzjUAI4ayyF4IAtfw2QR/IDoqk6jTddXDhtYTJF9ASmoE1zst7cVtP0aL/F1jUJL5r+JxKXKEgHNbEUQ==
@@ -3751,13 +3751,6 @@ jest-snapshot@^29.7.0:
37513751
pretty-format "^29.7.0"
37523752
semver "^7.5.3"
37533753

3754-
jest-styled-components@^7.2.0:
3755-
version "7.2.0"
3756-
resolved "https://registry.yarnpkg.com/jest-styled-components/-/jest-styled-components-7.2.0.tgz#67e768b98d3d58513341a62baca76f3e253a4deb"
3757-
integrity sha512-gwyyveNjvuRA0pyhbQoydXZllLZESs2VuL5fXCabzh0buHPAOUfANtW7n5YMPmdC0sH3VB7h2eUGZ23+tjvaBA==
3758-
dependencies:
3759-
"@adobe/css-tools" "^4.0.1"
3760-
37613754
jest-util@^29.0.0, jest-util@^29.7.0:
37623755
version "29.7.0"
37633756
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc"
@@ -4596,6 +4589,13 @@ react-docgen@^7.0.0:
45964589
loose-envify "^1.1.0"
45974590
scheduler "^0.23.2"
45984591

4592+
react-dom@^19.0.0:
4593+
version "19.0.0"
4594+
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-19.0.0.tgz#43446f1f01c65a4cd7f7588083e686a6726cfb57"
4595+
integrity sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==
4596+
dependencies:
4597+
scheduler "^0.25.0"
4598+
45994599
react-is@^16.7.0:
46004600
version "16.13.1"
46014601
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
@@ -4789,6 +4789,11 @@ scheduler@^0.23.2:
47894789
dependencies:
47904790
loose-envify "^1.1.0"
47914791

4792+
scheduler@^0.25.0:
4793+
version "0.25.0"
4794+
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.25.0.tgz#336cd9768e8cceebf52d3c80e3dcf5de23e7e015"
4795+
integrity sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==
4796+
47924797
schema-utils@^3.1.1, schema-utils@^3.2.0:
47934798
version "3.3.0"
47944799
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe"

0 commit comments

Comments
 (0)