Skip to content

build(deps): bump semver from 5.4.1 to 5.7.2 #16

build(deps): bump semver from 5.4.1 to 5.7.2

build(deps): bump semver from 5.4.1 to 5.7.2 #16

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install dependencies
run: yarn install --offline --immutable
- name: Linter
run: yarn lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 8.x, 10.x, 12.x, 14.x, 16.x ]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install --offline --immutable
- name: Run test
run: yarn test