Add a script to inject UTM parameters #339
Workflow file for this run
This file contains hidden or 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: Build Note Type | |
| on: | |
| push: | |
| branches: | |
| - "*" | |
| pull_request: | |
| branches: | |
| - "*" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build Note Type | |
| run: npm run build | |
| - name: Commit and push changes to git | |
| uses: EndBug/[email protected] | |
| with: | |
| message: "npm build" | |
| committer_name: github-actions | |
| committer_email: [email protected] |