@@ -38,21 +38,21 @@ jobs:
38
38
uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
39
39
with :
40
40
node-version : ${{ env.NODE_VERSION }}
41
- cache : yarn
42
- cache-dependency-path : yarn. lock
43
- - name : Install Dependencies
44
- run : yarn install --immutable
41
+ cache : pnpm
42
+ cache-dependency-path : package- lock.json
43
+ - name : Install PNPM
44
+ uses : pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
45
45
- name : Build Components
46
- run : yarn build
46
+ run : pnpm build
47
47
working-directory : packages/components
48
48
- name : Lint Showcase
49
- run : yarn run lint
49
+ run : pnpm run lint
50
50
working-directory : showcase
51
51
- name : Lint Components
52
- run : yarn run lint
52
+ run : pnpm run lint
53
53
working-directory : packages/components
54
54
- name : Run Tests
55
- run : yarn run test:ember:percy
55
+ run : pnpm run test:ember:percy
56
56
working-directory : showcase
57
57
env :
58
58
PERCY_TOKEN : ${{ secrets.PERCY_TOKEN_COMPONENTS }}
@@ -80,16 +80,15 @@ jobs:
80
80
uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
81
81
with :
82
82
node-version : ${{ env.NODE_VERSION }}
83
- cache : yarn
84
- cache-dependency-path : yarn. lock
85
- - name : Install Dependencies
86
- run : yarn install --immutable
83
+ cache : pnpm
84
+ cache-dependency-path : package- lock.json
85
+ - name : Install PNPM
86
+ uses : pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
87
87
- name : Build Components
88
- run : yarn build
88
+ run : pnpm build
89
89
working-directory : packages/components
90
90
- name : Run Tests
91
91
working-directory : showcase
92
- run : yarn ember try:one ${{ matrix.try-scenario }}
92
+ run : pnpm ember try:one ${{ matrix.try-scenario }}
93
93
env :
94
94
PERCY_ENABLE : 0
95
- YARN_ENABLE_IMMUTABLE_INSTALLS : false
0 commit comments