-
Notifications
You must be signed in to change notification settings - Fork 20
50 lines (48 loc) · 1.76 KB
/
azure-static-web-apps-gentle-beach-0eb2d061e.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
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Azure Static Web Apps CI/CD
on:
push:
branches:
- Assignment1
paths:
- "wordle-web/**"
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- Assignment1
workflow_dispatch:
jobs:
build_and_deploy_job:
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
- name: Get Code
uses: actions/checkout@v3
with:
submodules: true
lfs: false
- name: Setup Node.js environment
uses: actions/[email protected]
with:
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0.
node-version: 18
- name: Install Packages
run: npm ci
working-directory: ./wordle-web
- name: Generate
run: npm run generate
working-directory: ./wordle-web
- name: Run Vitest
run: npm run test
working-directory: ./wordle-web
- name: Build And Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_GENTLE_BEACH_0EB2D061E }}
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
action: "upload"
###### Repository/Build Configurations - These values can be configured to match your app requirements. ######
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
app_location: "./wordle-web/.output/public" # App source code path
output_location: "" # Built app content directory - optional
###### End of Repository/Build Configurations ######