Skip to content

chore(deps): Bump get-func-name from 2.0.0 to 2.0.2 #118

chore(deps): Bump get-func-name from 2.0.0 to 2.0.2

chore(deps): Bump get-func-name from 2.0.0 to 2.0.2 #118

Workflow file for this run

name: Coveralls
on: [pull_request]
env:
CI: true
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
NODE_ENV: test
jobs:
run:
name: Coverage [Node.js ${{ matrix.node-version }} on ${{ matrix.os }}]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [12.x]
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Setup Redis
uses: zhulik/redis-action@1.1.0
with:
redis version: '5'
number of databases: 1
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}