-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 1.17 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
permissions: write-all
jobs:
aquire-token:
runs-on: ubuntu-latest
steps:
- name: 'Login to Azure'
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
allow-no-subscriptions: true
- name: 'Obtain token for upload'
shell: bash
run: echo "FUSION_TOKEN=$(az account get-access-token --resource '${{ secrets.AZURE_RESOURCE_ID }}' | jq '.accessToken')" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # Required to fetch range
- name: Install Dependencies
run: npm i -g pnpm typescript && pnpm i
- name: 'deploy'
shell: bash
run: npx turbo run idk --since origin/main -- --token ${{ env.FUSION_TOKEN }}
# # Run the action on the yarn-workspaces example
# - name: Test Action
# id: changedAction
# uses: ./
# with:
# turbo-command: idk --since origin/main -- --token ${{ env.FUSION_TOKEN }}