Skip to content

Bump semver from 5.7.1 to 5.7.2 (#24) #49

Bump semver from 5.7.1 to 5.7.2 (#24)

Bump semver from 5.7.1 to 5.7.2 (#24) #49

Workflow file for this run

name: Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
unit-tests:
name: Unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node: [12, 14, 16]
exclude:
- os: macos-latest
node: 12
- os: macos-latest
node: 16
- os: windows-latest
node: 12
- os: windows-latest
node: 16
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run unit tests
run: yarn test --coverage