Skip to content

Commit

Permalink
chore(tel): update GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbeechey committed Nov 16, 2023
1 parent 439b2a7 commit 67166b5
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/telemetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: Telemetry Build
on:
push:
paths:
- "telemetry/**"
- 'telemetry/**'
- '.github/workflows/telemetry.yml'

jobs:
telemetry-build:
Expand All @@ -16,12 +17,12 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: "18.14.0"
cache: "yarn"
cache-dependency-path: "telemetry/yarn.lock"
node-version: '18.14.0'
cache: 'pnpm'
cache-dependency-path: 'telemetry/pnpm-lock.yaml'

- name: Install dependencies
run: yarn install
run: pnpm install

- name: Build
run: yarn build
run: pnpm build

0 comments on commit 67166b5

Please sign in to comment.