Skip to content

chore(deps): update dependency eslint-plugin-react to v7.37.2 - autoclosed #803

chore(deps): update dependency eslint-plugin-react to v7.37.2 - autoclosed

chore(deps): update dependency eslint-plugin-react to v7.37.2 - autoclosed #803

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
check-all:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node-version }}
- name: npm install global packages
run: npm install -g codecov
- name: npm ci
run: npm ci
- name: lint, test, build, then e2e
run: npm run pre-push
- name: send coverage to codecov.io
run: codecov --token="${{ secrets.CODECOV_IO_TOKEN }}" --branch="${GITHUB_REF#refs/heads/}"
- name: Github Pages Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/master'}}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.no-reply.github.com'