Skip to content

add ci job that runs axe-core #94

add ci job that runs axe-core

add ci job that runs axe-core #94

Workflow file for this run

name: Continuous Integration
on: [pull_request]
jobs:
buildLintTest:
name: Build, Lint, and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn clean && yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test --watchAll=false