1 file changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -35,18 +35,19 @@ jobs:
35
35
36
36
steps :
37
37
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
38
+ - name : Install PNPM
39
+ uses : pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
40
+ with :
41
+ run_install : false
38
42
- name : Install Node
39
43
uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
40
44
with :
41
45
node-version : ${{ env.NODE_VERSION }}
42
46
cache : pnpm
43
- cache-dependency-path : package-lock.json
44
- - name : Install PNPM
45
- uses : pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
46
- with :
47
- run_install : true
47
+ - name : Install Dependencies
48
+ run : pnpm install
48
49
- name : Lint
49
- run : pnpm run lint
50
+ run : pnpm lint
50
51
working-directory : website
51
52
52
53
test :
@@ -57,19 +58,20 @@ jobs:
57
58
58
59
steps :
59
60
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
61
+ - name : Install PNPM
62
+ uses : pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
63
+ with :
64
+ run_install : false
60
65
- name : Install Node
61
66
uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
62
67
with :
63
68
node-version : ${{ env.NODE_VERSION }}
64
69
cache : pnpm
65
- cache-dependency-path : package-lock.json
66
- - name : Install PNPM
67
- uses : pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
68
- with :
69
- run_install : true
70
+ - name : Install Dependencies
71
+ run : pnpm install
70
72
- name : Build Components
71
73
run : pnpm build
72
74
working-directory : packages/components
73
75
- name : Run Tests
74
- run : pnpm run test:ember
76
+ run : pnpm test:ember
75
77
working-directory : website
0 commit comments