Bump semver from 5.7.1 to 5.7.2 #108
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test, Lint, and Build | |
on: pull_request | |
jobs: | |
test-unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- name: Install Dependencies | |
run: | | |
npm i | |
- name: Run Unit Tests | |
run: | | |
CI=true npm run test:all-unit | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "14.x" | |
- name: Install Dependencies | |
run: | | |
npm i | |
- name: Run Lint | |
run: | | |
npm run lint | |
- name: Run Format Check | |
run: | | |
npm run format:check | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "14.x" | |
- name: Install Dependencies | |
run: | | |
npm i | |
- name: Run Build | |
run: | | |
npm run build |