feat: new theme and set padding to auto #3478
Workflow file for this run
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] | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: '14' | |
- name: Run CI | |
run: | | |
npm install | |
npm run ci | |
- name: Upload Snapshot | |
if: ${{ failure() }} | |
env: | |
REF_NAME: ${{ github.ref_name }} | |
GITHUB_WORKSPACE: ${{ github.workspace }} | |
OSS_REGION: ${{ secrets.OSS_REGION }} | |
OSS_ACCESS_KEY_ID: ${{ secrets.OSS_ACCESS_KEY_ID }} | |
OSS_ACCESS_KEY_SECRET: ${{ secrets.OSS_ACCESS_KEY_SECRET }} | |
OSS_BUCKET: ${{ secrets.OSS_BUCKET }} | |
run: | | |
npm run upload | |
- name: Update coverall | |
if: ${{ success() }} | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |