Skip to content

chore(release): 4.113.1 #3852

chore(release): 4.113.1

chore(release): 4.113.1 #3852

Workflow file for this run

name: Test
on:
push:
branches:
- master
- 'renovate/**'
pull_request:
branches:
- master
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- uses: actions/cache@v2
id: cache
with:
path: node_modules
key: ${{ hashFiles('yarn.lock') }}
- if: ${{ steps.cache.outputs.cache-hit != 'true' }}
run: yarn --frozen-lockfile
- run: |
rm -rf node_modules/.cache
npm run build
npm run test-with-coverage
npx codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}