Skip to content

Commit

Permalink
ci: test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustav-Eikaas committed Aug 15, 2023
1 parent 9a44584 commit 7c78884
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/pr-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,22 @@ jobs:
with:
fetch-depth: 0 # Required to fetch range

- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8

- uses: actions/setup-node@v3
with:
cache: 'pnpm'
run: pnpm install

- name: Install Dependencies
run: npm i -g pnpm typescript && pnpm i
run: npm i -g typescript

- name: Build monorepo
run: pnpm ci:build

- name: 'Deploy affected apps to Fusion CI'
shell: bash
run: npx turbo run pr:deploy --since origin/main --concurrency 1 -- --token ${{ env.FUSION_TOKEN }} --pr ${{ github.event.pull_request.number }}
run: npx turbo run pr:deploy --concurrency 1 -- --token ${{ env.FUSION_TOKEN }} --pr ${{ github.event.pull_request.number }}

0 comments on commit 7c78884

Please sign in to comment.