Skip to content

[4.1] update website and docs, add pagination to reminders #162

[4.1] update website and docs, add pagination to reminders

[4.1] update website and docs, add pagination to reminders #162

Workflow file for this run

name: Web - Test
on:
pull_request:
paths:
- 'web/**'
- '.pretterrc'
- 'eslint-config/**'
- '.github/workflows/web-test.yml'
push:
branches:
- master
defaults:
run:
working-directory: ./web/
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
steps:
- name: Check Out Git repository
uses: actions/checkout@v1
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 15
- name: Install Dependencies
run: |
yarn install --frozen-lockfile --network-timeout 300000
- name: Typecheck
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
yarn tsc
- name: Lint
run: |
yarn lint
- name: Unit Tests
run: |
yarn test