Skip to content

Miscellaneous Repo Improvements #149

Miscellaneous Repo Improvements

Miscellaneous Repo Improvements #149

Workflow file for this run

name: on-pull-request
on:
pull_request:
branches:
- master
jobs:
test:
name: Verify all tests pass and build success
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v2
- name: Use Node.js 💻
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build bundles and tabs
run: yarn build --tsc --lint
- name: Test bundles and tabs
run: yarn test --color
- name: Test and lint scripts
run: yarn scripts:tsc && yarn scripts:lint && yarn scripts:test
- name: Check and Lint Devserver
run: yarn devserver:tsc && yarn devserver:lint