Skip to content

Bump semver from 5.7.1 to 5.7.2 #180

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #180

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c #v3.3.0
- name: Use nodejs ${{ matrix.node-version }}
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c #v3.6.0
with:
node-version: ${{ matrix.node-version }}
- name: yarn
run: yarn --network-concurrency 1
- name: lint:js
run: yarn lint:js
- name: test
env:
CI: true
run: yarn test
- name: build
env:
CI: false
run: yarn build