Merge pull request #1833 from laws-africa/case-history #1055
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: Build | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Compile javascript and commit changes | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# use a token that has admin perms to bypass direct commits to master | |
token: ${{ secrets.LA_ACTIONS_TOKEN }} | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Install dependencies | |
run: npm ci --no-audit --prefer-offline --ignore-scripts | |
- name: Build | |
run: npx webpack --mode production | |
- name: Push | |
uses: EndBug/add-and-commit@v7 | |
with: | |
add: 'peachjam/static/js/*app-prod.js peachjam/static/js/pdf.worker-prod.js --force' | |
message: 'Update compiled javascript' |