Skip to content

Commit

Permalink
Commit and push built files to master (#756)
Browse files Browse the repository at this point in the history
* Commit and push built files to master

* Testing...

* Add  name

* Add fallback

* Revert back to master branch
  • Loading branch information
jshjohnson committed Nov 14, 2019
1 parent 933ea60 commit e67b8a3
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 10
# run all tests
- run: |
- name: Build and run all tests
run: |
npm ci
npm run build
npx bundlesize
Expand All @@ -32,6 +32,15 @@ jobs:
BUNDLESIZE_GITHUB_TOKEN: ${{secrets.BUNDLESIZE_GITHUB_TOKEN}}
FORCE_COLOR: 2
HUSKY_SKIP_INSTALL: true
- name: Commit built files
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m "Update build files 🏗" -a || echo "No changes to commit" && exit 0
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)
Expand Down

0 comments on commit e67b8a3

Please sign in to comment.