File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 66 - main
77 - dev
88
9+ env :
10+ TELEMETRY_TRACKING_TOKEN : ${{ secrets.TELEMETRY_TRACKING_TOKEN }}
11+ DO_NOT_TRACK : ' 1'
12+
913permissions :
1014 contents : read
1115
6468 run : pnpm install --frozen-lockfile
6569
6670 - name : Build
67- env :
68- TELEMETRY_TRACKING_TOKEN : ${{ secrets.TELEMETRY_TRACKING_TOKEN }}
6971 run : echo TOKEN $TELEMETRY_TRACKING_TOKEN && pnpm run build
7072
7173 - name : Lint
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import fs from 'node:fs';
22import path from 'node:path' ;
33import { fileURLToPath } from 'node:url' ;
44
5- const token = process . env [ ' TELEMETRY_TRACKING_TOKEN' ] ?? '' ;
5+ const token = process . env . TELEMETRY_TRACKING_TOKEN ?? '' ;
66
77console . log ( 'TELEMETRY_TRACKING_TOKEN:' , token ?. [ 0 ] ) ;
88
You can’t perform that action at this time.
0 commit comments