Update README.md #572
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Azure Static Web Apps CI/CD | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build_and_deploy_job: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
name: Build and Deploy Job | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: install, build | |
run: | | |
yarn | |
yarn build --no-lint | |
yarn build-storybook | |
- 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_WITTY_PLANT_07A086E03 }} | |
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) | |
action: 'upload' | |
skip_app_build: true | |
skip_api_build: true | |
app_location: '/storybook-static' # App source code path | |
build_pr: | |
if: github.event_name != 'push' || (github.event_name == 'pull_request') | |
runs-on: ubuntu-latest | |
name: Build PR | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: install, build, test | |
run: | | |
yarn | |
yarn build | |
yarn build-storybook | |
yarn test |