chore(deps): update jamesives/github-pages-deploy-action action to v4 #971
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: CI | |
on: [push] | |
env: | |
CI: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14.x' | |
- name: install, lint and unit test | |
run: | | |
yarn install --frozen-lockfile | |
yarn lint | |
yarn test --coverage | |
- name: Upload coverage to Codecov | |
if: always() | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
release: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14.x' | |
- name: Install and Build 🔧 | |
run: | | |
yarn install --frozen-lockfile | |
yarn build | |
npx semantic-release | |
storybook: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14.x' | |
- name: Install and Build 🔧 | |
run: | | |
yarn install --frozen-lockfile | |
yarn build-storybook | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4.6.4 | |
with: | |
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }} | |
BRANCH: gh-pages # The branch the action should deploy to. | |
FOLDER: storybook-static # The folder that the build-storybook script generates files. | |
CLEAN: true # Automatically remove deleted files from the deploy branch |