Skip to content

Bump semver from 7.3.5 to 7.5.4 in /examples/guide/chapter-4/fastify #143

Bump semver from 7.3.5 to 7.5.4 in /examples/guide/chapter-4/fastify

Bump semver from 7.3.5 to 7.5.4 in /examples/guide/chapter-4/fastify #143

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