File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,20 @@ concurrency:
1212 cancel-in-progress : true
1313
1414jobs :
15+ build :
16+ name : " Build"
17+ runs-on : ubuntu-latest
18+ timeout-minutes : 2
19+ steps :
20+ - uses : actions/checkout@v4
21+ - uses : pnpm/action-setup@v4
22+ - uses : actions/setup-node@v4
23+ with :
24+ node-version : 22
25+ cache : pnpm
26+ - run : pnpm install --frozen-lockfile
27+ - run : pnpm build
28+
1529 lint :
1630 name : " Lints"
1731 runs-on : ubuntu-latest
5064 # For the Try Scenarios
5165 - id : set-matrix
5266 run : |
53- echo "matrix=$(pnpm -s dlx @embroider/try list)" >> $GITHUB_OUTPUT
54-
67+ echo "matrix=$(pnpm -s dlx @embroider/try list)" >> $GITHUB_OUTPUT
5568
5669 floating :
5770 name : " Floating Dependencies"
88101 cache : pnpm
89102 - name : Apply Scenario
90103 run : |
91- pnpm dlx @embroider/try apply ${{ matrix.name }}
104+ pnpm dlx @embroider/try apply ${{ matrix.name }}
92105
93106 - name : Install Dependencies
94107 run : pnpm install --no-lockfile
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export default {
6363 // Emit .d.ts declaration files
6464 addon . declarations (
6565 'declarations' ,
66- `npx glint --declaration --project ${ tsConfig } ` ,
66+ `pnpm ember-tsc --declaration --project ${ tsConfig } ` ,
6767 ) ,
6868
6969 // addons are allowed to contain imports of .css files, which we want rollup
You can’t perform that action at this time.
0 commit comments