Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

npm(deps-dev): bump eslint-config-prettier from 8.9.0 to 9.0.0 #445

npm(deps-dev): bump eslint-config-prettier from 8.9.0 to 9.0.0

npm(deps-dev): bump eslint-config-prettier from 8.9.0 to 9.0.0 #445

Workflow file for this run

name: Test
on: push
jobs:
test:
name: Test Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout Code Base
uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Run Unit Tests
run: yarn test:ci --projects tests/unit
- name: Run Integration Tests
run: yarn test:ci --projects tests/integration
- name: Check Code Coverage
run: yarn test:coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
e2e:
name: E2E Tests
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.7.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Code Base
uses: actions/checkout@v2
- name: Build test container
run: docker-compose build
- name: Run End-to-End Tests
run: yarn test:e2e --runInBand --noStackTrace --ci
- name: Check Docusaurus Production build
run: yarn build:e2e