Revert "Updating Github workflow to prepublish prior to publishing (#… #43
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: Code Quality | |
on: push | |
jobs: | |
build: | |
name: TypeScript Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: yarn install | |
run: yarn install | |
- run: yarn build | |
name: yarn build | |
typecheck: | |
name: TypeScript Typecheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: yarn install | |
run: yarn install | |
- run: yarn typecheck | |
name: yarn typecheck | |
test: | |
name: Jest CI Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: yarn install | |
run: yarn install | |
- name: yarn build | |
run: yarn build | |
- run: yarn test:ci | |
name: yarn test:ci | |
prettier: | |
name: Prettier Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: yarn install | |
run: yarn install | |
- run: yarn format:check | |
name: yarn format:check | |
lint: | |
name: ESLint Linting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: yarn install | |
run: yarn install | |
- run: yarn lint | |
name: yarn lint |