Skip to content

chore(deps): update devdependency eslint-plugin-jsdoc to v46.9.0 #474

chore(deps): update devdependency eslint-plugin-jsdoc to v46.9.0

chore(deps): update devdependency eslint-plugin-jsdoc to v46.9.0 #474

Workflow file for this run

name: unit
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-unit:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [14]
steps:
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: checkout
uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile --non-interactive
- name: lint
run: yarn lint
- name: test unit
run: yarn test:unit
- name: coverage
uses: codecov/codecov-action@v1