Content updates to voice and tone (#601) #112
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: Update built files | |
on: | |
push: | |
branches: [ 'master' ] | |
paths-ignore: | |
- '.sastscan.baseline' | |
- 'pnpm-lock.yaml' | |
jobs: | |
common: | |
name: Build files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.PAT }} | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
node: 18 | |
- name: Scan dependencies | |
uses: ./.github/actions/scan-dependencies | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update built files | |
uses: ./.github/actions/update-built-files | |
with: | |
baseline-branch: 'master' | |
static-analysis: | |
name: Static analysis | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Scan code-base | |
uses: ./.github/actions/scan-code |