Skip to content

Feature/custom theme #80

Feature/custom theme

Feature/custom theme #80

Workflow file for this run

name: Checks
on: [pull_request]
jobs:
run:
name: Run
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '16.13'
- name: Install
run: yarn install
- name: Lint
run: yarn checks lint
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
- name: TypeCheck
run: yarn checks typecheck
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
- name: TestUnit
run: yarn checks test unit
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
- name: TestIntegration
run: yarn checks test integration
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
- name: Release
run: yarn checks release
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'