Skip to content

build(deps-dev): bump get-func-name from 2.0.0 to 2.0.2 #36

build(deps-dev): bump get-func-name from 2.0.0 to 2.0.2

build(deps-dev): bump get-func-name from 2.0.0 to 2.0.2 #36

Workflow file for this run

name: Pull Request CI
on: pull_request
env:
COVERALLS_REPO_TOKEN: "${{ secrets.COVERALLS_REPO_TOKEN }}"
jobs:
lint_and_test:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: NPM Cache
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: NPM Install
run: npm install --ignore-scripts
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Coverage
run: npm run coverage