Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Bump semver from 5.7.1 to 5.7.2 #58

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #58

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 13.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn run lint
- run: IN_CI_ENVIRONMENT=1 yarn run coverage
- name: Upload report to Codecov
run: bash <(curl -s https://codecov.io/bash)