Skip to content

Bump semver from 5.7.1 to 5.7.2 #59

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #59

Workflow file for this run

name: PR Checks
on: [pull_request]
jobs:
run_tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: unit_test
run: |
yarn
yarn test
working-directory: ./
build_code:
name: Build Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Build
run: |
yarn
yarn build
working-directory: ./