v1.3.0 #41
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: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- name: Install | |
run: | | |
yarn cache clean | |
yarn install | |
- name: Build 🔧 | |
run: yarn build | |
- name: Tests | |
run: yarn test | |
- name: Deploy documentation 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: packages/docs/build | |
if: github.event_name != 'pull_request' | |
- name: Setting upsteam | |
run: git push --set-upstream origin master | |
if: github.event_name != 'pull_request' | |
- name: Generating coverage badges | |
uses: jpb06/jest-badges-action@latest | |
with: | |
coverage-summary-path: packages/coverage/coverage-summary.json | |
branches: master,preprod,staging | |
if: github.event_name != 'pull_request' | |
- name: Generating the size badge | |
run: | | |
node .github/scripts/size-badge.js | |
git add badges/weight.svg | |
git commit -m "Generating the size badge" | |
git push | |
if: github.event_name != 'pull_request' |