Skip to content

chore(deps): replace dependency babel-eslint with @babel/eslint-parse… #104

chore(deps): replace dependency babel-eslint with @babel/eslint-parse…

chore(deps): replace dependency babel-eslint with @babel/eslint-parse… #104

Workflow file for this run

name: Test Dependency
on:
push:
branches:
- renovate/*
jobs:
audit:
runs-on: ubuntu-latest
steps:
- id: checkout
uses: actions/[email protected]
- id: npm-setup
uses: actions/[email protected]
with:
node-version: '14'
- id: audit
run: yarn audit --groups dependencies
test:
runs-on: ubuntu-latest
steps:
- id: checkout
uses: actions/[email protected]
- id: npm-setup
uses: actions/[email protected]
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/[email protected]
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- id: install
run: yarn install --frozen-lockfile
- id: lint
run: yarn lint
- id: build
run: yarn build
- id: test
run: yarn test
# Test docs have been updated
- id: check-docs
run: yarn test:doc