Skip to content

Bump semver from 5.7.1 to 5.7.2 #142

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #142

Workflow file for this run

name: Tests
on:
push:
branches-ignore:
- master # Done in prepublishOnly script
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 15.12
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: |
yarn install
- name: Test
run: |
yarn test --coverage
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
env:
CI: true