Skip to content

Bump semver from 5.7.1 to 5.7.2 #93

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #93

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: yarn
- run: yarn --frozen-lockfile
- run: yarn prettier --check .
test:
name: test (Node ${{ matrix.node-version }}, ESLint ${{ matrix.eslint-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 16, 18]
eslint-version: [6, 7, 8]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn --frozen-lockfile
- run: yarn add --dev eslint@${{ matrix.eslint-version }}
- run: yarn test