Skip to content

Bump semver from 5.7.1 to 5.7.2 #190

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #190

Workflow file for this run

name: CI
on:
pull_request:
types: ['opened', 'reopened', 'synchronize']
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
node: [10, 12, 14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install
run: npm ci
- name: Format check
run: npm run format:check
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test -- --coverage
- name: Codecov
uses: codecov/codecov-action@v1
with:
token: ${{secrets.CODECOV_TOKEN}}
- name: Coverage
uses: neofinancial/coverage-upload-action@v1
with:
coverageEndpoint: ${{secrets.COVERAGE_ENDPOINT}}
coverageToken: ${{secrets.COVERAGE_TOKEN}}
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}